I am starting from the VERY basics and I'm trying to create a simple madlibs-esque game where a user can import a verb, noun etc and the program will print a paragraph using these inputs, so far I have:
a = raw_input("Enter a verb")
input("\n\n")
b = raw_input("Enter a person")
input("\n\n")
c = raw_input("Enter a place")
input("\n\n")
and in a previous mini-program I used the code
input("\n\n")
Which made the program wait for the input of the enter key by the user, however now it will not wait for the user to enter anything and simply runs the entire program without delay.
I know this is a really basic problem but could somebody please point out why the program is not waiting for user input in this instance?
Thanks in advance!
I don't know what I have done to the Python interpreter, now it immediately closes after ANYTHING, even something I know is correct (because I copied it) such as:
def new_line():
print
def three_lines():
new_line()
new_line()
new_line()
print "First Line."
three_lines()
print "Second Line."
What is wrong with me?