Program to count the
number of letters of the
string without using the
length function
python program
Answers
Answered by
1
str1 = input("Please Enter your Own String : ")
total = 0
for i in str1:
total = total + 1
print("Total Number of Characters in this String = ", total)
Similar questions