I currently have this for assignment:
word = input("Please enter a word: ")
print("The length of " + word + " is " + len(word = int(word)))
It runs and I enter Lilith Qua
I run into an error said that:
ValueError: invalid literal for int() with base 10: 'Lilith Qua'
Is there away to fix this?