I'm new to python and programming in general and I wrote this code on Sublime Text, and I can't see the error in it.
print("Please enter a quote you would like to use: ")
quote = str(input())
print(quote.upper())
print()
print(quote.lower())
print()
print(quote.capitalise())
print()
print(quote.title())
Any help would be much appreciated.
Many thanks, Dan