- 1
Words with length s
2 ответов
+ 2
Hi, this is the Q&A section, here you can ask programming related questions. What is your question? Please give a complete problem description.
0
If you want to find length of any data type, you can use print(len()).
Let me give you an example,
a = [2,4,7,9]
print(len(a))
Output will be:- 4