Computer Science, asked by ashishsoan686, 6 hours ago

What will be the output of: li=[2,5,7,9] print(len(li)) output ​

Answers

Answered by Mimix123
1

Answer:

li=[2,5,7,9]

print(len(li))

output:-

4

Explanation:

Similar questions