I have a few lines of code here for Python:
# Asks for a name
def CC():
print "..."
tick.clock(3)
print "Welcome...\
What is your name, scared one?"
name = str(raw_input("What is your name?").lower())
# For debugging purposes
print name
I want to run the code and ask the player what their name is with the line:
name = str(raw_input("What is your name?").lower())
But every debugger I use online doesn't ask me for my name so i can only assume the code itself is wrong. I'm using Atom on Windows and i cant seem to find any useful run/debugging tools on there. Please send feedback on what it is I'm doing wrong in order to get the name of my character.This is to help in the development of a game I am currently working on.
Also I would appreciate it if you could tell me if there is a useful tool in Atom or online just for my sort of problem.
(P.S) I'm open to what I could do better. Thank you.