This is my code:
length = len(input("What is your name?\n"))
print("The length of your name is ",length,".")
Now, this is my output:
What is your name?
Shary
The length of your name is 5 .
I would like my output to be like this "The length of your name is 5." As you can imagine, by placing a comma next to the Integer length, I have an extra space I would like to take care of. I am new to Python so I do not really know how to solve this.
Any help would be greatly appreciated.