What will be the output of: li=[2,5,7,9] print(len(li)) output
Answers
Answered by
1
Answer:
li=[2,5,7,9]
print(len(li))
output:-
4
Explanation:
Similar questions