Hello guys!!
I really need your help, I'm starting to use python and I have to write a program that counts the letters of a sentence entered by the user. This is what I have so far, but I don't know why it is not working.. Please help, thank you
def main():
phrase = input("Enter a sentence:")
words = phrase.split
wordCount = len(words)
print("The total word count is:")
main()