Files
openide/python/testData/debug/test_input.py
2014-08-12 22:18:01 +02:00

7 lines
164 B
Python

while True:
promt = "print command > "
try:
string = raw_input(promt)
except :
string = input(promt)
print ("command was " + string)