I have a question: how to repeat an instruction of raw_input in python 2.7.5?
print("This is a NotePad")
main = raw_input()
this is the code(I started 3 minutes ago.) I can't find an answer to my question on Google.
This is the code with me trying but suffering
print("This is a NotePad")
main = raw_input()
for i in range(12000):
main
The error is Process finished with exit code 0 Okay, it's not an error but it's not what I was expecting.