Q1. Which of the following statement will create list?
Q2. Write the output of the following code :
Q3. Write the output of the following code :
>>>L=['w','e','l','c','o','m','e']
>>>print(len(L))
Q4. Write the output of the following code :
>>>L=["Amit","Anita","Zee","Longest Word"]
>>>print(max(L))
Q5. Write the output of the following code :
>>>L=["Amit","Anita","Zee","Longest Word",123]
>>>print(max(L))
Q6. Write the output of the following code :
>>>L=[1,5,9]
>>>print(sum(L),max(L),min(L))
Q7. Do we have any inbuilt function for shuffling the values of List. :
Q8. Write the output of the following code :
>>>L=[1,2,3,4,5,[6,7,8]]
>>>print(L[5])
Q9. Write the output of the following code :
L=list("www.csiplearninghub.com")
print(L[20:-1])
Q10. Write the output of the following code :
L=list("www.csiplearninghub.com")
print(L[20:0])