could you please tell me what is the syntax error in the print statement that is below the while statement?
I am using python btw
If it is python 3.2 you need to use print as a function print("hello world!") or print('hello world!')
@123456789 , what version are you using (please be fast if you want me to answer; otherwise tag someone else - I have to go to bed lol)
i am using version 2.5.4
Can you try rerunning the program in the interpreter with my corrections? If it doesn't work, I'll look into it some more tomorrow...
ok thanks!
(I have to go now, but feel free to ask in math chat for people to help you in your question - just explain the situation)
ok i appreciate the help
No problem :)
looks like you are using Python 3 print syntax in a Python 2 program. Replace: print(i,end= '') with: print i,
Join our real-time social learning platform and learn together with your friends!