the-honk/gcse computer science/year 9/python challenges/11 - Character Counter.py
2021-09-14 21:57:23 +01:00

7 lines
No EOL
126 B
Python

sentence = input('Please input a sentence.')
charCount = 0
for i in sentence:
charCount = charCount + 1
print(charCount)