write a program in Python application for the following operations first to input a string and print its length
Answers
Answered by
1
Explanation:
str=input("enter a string")
print(len(str))
Similar questions