51. Is python a case sensitive language?
52. What are the supported data types in Python?
53. What is the output of print str if str = 'Hello World!'?
54. What is the output of print str[0] if str = 'Hello World!'?
55. What is the output of print str[2:5] if str = 'Hello World!'?
56. What is the output of print str[2:] if str = 'Hello World!'?
57. What is the output of print str * 2 if str = 'Hello World!'?
58. What is the output of print str + "TEST" if str = 'Hello World!'?
59. What is the output of print list if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
60. What is the output of print list[0] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
61. What is the output of print list[1:3] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
62. What is the output of print list[2:] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
63. What is the output of print tinylist * 2 if tinylist = [123, 'john']?
64. What is the output of print list1 + list2, if list1 = [ 'abcd', 786 , 2.23, 'john', 70.2 ] and ist2 = [123, 'john']?
65. What are tuples in Python?
66. What is the difference between tuples and lists in Python?
67. What is the output of print tuple if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 )?
68. What is the output of print tuple[0] if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 )?
69. What is the output of print tuple[1:3] if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 )?
70. What is the output of print tuple[2:] if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 )?
71. What is the output of print tinytuple * 2 if tinytuple = (123, 'john')?
72. What is the output of print tuple + tinytuple if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 ) and tinytuple = (123, 'john')?
73. What are Python's dictionaries?
74. How will you create a dictionary in python?
75. How will you get all the keys from the dictionary?