Find the output of the following Python code:
t = [10,20,30,40,50,60,70,20,30,50]
print(t)
print(max(t))
print(t. count(20))
print(t [0]+5)
print(t. index[40])
print(min(t)+len (t))
Answers
Answered by
1
Answer:
1. print (t)
Explanation:
i dont know is that right ans ... tell me right ans
Similar questions