📅  最后修改于: 2022-03-11 14:46:36.531000             🧑  作者: Mango
# User inputs the string and it gets stored in variable str
str = input("Enter a string: ")
# counter variable to count the character in a string
counter = 0
for s in str:
counter = counter+1
print("Length of the input string is:", counter)