week-4 #5

Merged
Kenwood merged 12 commits from week-4 into master 2021-02-03 16:53:55 -05:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 5ea69d0956 - Show all commits

10
4/4.14 LAB/main.py Normal file
View File

@ -0,0 +1,10 @@
user_text = input()
def count_letters(string):
result = 0;
for letter in list(string):
if letter.isalpha():
result += 1
return(result)
print(count_letters(user_text))