var username = input("Input name")
print(username)
This does not work for some reason.
This does not work for some reason.
because that’s not how you define a variable in Python.
username = input("Input name: ")
print(username)
Also, I don’t think you can use input
function in the CC lessons.