Question: I don't need explanation pls help Consider the list my_list =[1880, ' 990EZ, 'Tax Forms' ] .Which statement gives '990EZ' as the output? print(my_list [:1])
!['Tax Forms' ] .Which statement gives '990EZ' as the output? print(my_list [:1])](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f12254308c3_99566f12253c741b.jpg)
![print(my_list[2]) print(my_list [:2]) Given a list my_list =[[0,1,2],[3,4,5],[6,7,8]] , how would you](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f12254c54ce_99666f1225468cbf.jpg)
![access the value 7 ? my_list[2][2] my_list[3][2] my_list[3][1] my_list[2][1] Which of the](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f1225549cf5_99666f12254eea3f.jpg)
Consider the list my_list =[1880, ' 990EZ, 'Tax Forms' ] .Which statement gives '990EZ' as the output? print(my_list [:1]) print(my_list[2]) print(my_list [:2]) Given a list my_list =[[0,1,2],[3,4,5],[6,7,8]] , how would you access the value 7 ? my_list[2][2] my_list[3][2] my_list[3][1] my_list[2][1] Which of the following statements is incorrect for python dictionaries? Dictionary do not have a relative ordering of positions Dictionaries cannot contain objects of arbitrary type Dictionaries are mutable dict() is a built-in function to create dictionaries in python Consider the string new string - 'Code development in Python'. Which statement will return 'velop' as a substring? nen_string [19:12] newistring[7:11] new.string[8:12]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
