count = 0
def checkletters(string):
for letter in string:
count +=1
input = input("What string do you want me to check for letter count: ")
checkletters(input)
print(f"There are {count} letters in that string")
I want the script to ask the user to input a string and it will send the amount of letters in the string