In Python 3.6.2 in my Shell I put:
print ("Hola mundo")
raw_input()
I execute it and it sends me this error:
multiple statements found while compiling a single statement
In Python 3.6.2 in my Shell I put:
print ("Hola mundo")
raw_input()
I execute it and it sends me this error:
multiple statements found while compiling a single statement
What happens in python 3.x that function no longer has the same name. Now only "input" is used. Example:
number = input ("Enter a number:")