InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    Find output generated by the following code: x="hello world" print(x[:2],x[:‐2],x[‐2:]) print(x[6],x[2:4]) print(x[2:‐3],x[‐4:‐2]) | 
                            
| 
                                   
Answer» E a error in your code :)output:Traceback (most RECENT call last):
  File "/usr/lib/python3.7/py_compile.py", line 143, in compile
    _optimize=optimize)
  File " | 
                            |