Ask your own question, for FREE!
MIT 6.189 A Gentle Introduction to Programming Using Python (OCW) 20 Online
OpenStudy (anonymous):

In Python 2.6; how can I see line by line the execution of the code I have typed? When I run a module and I don't get a syntax error message and I see the prompt sign; why won't the program execute?

OpenStudy (e.mccormick):

That would be using the debugger. http://www.cs.uky.edu/~paulp/CS115S11/DebugIdle.htm Most programmers rarely use a debugger. Instead they print or log a few key values and work from there.

OpenStudy (anonymous):

Exactly what I was going to say throw a print statement in at key events.

OpenStudy (anonymous):

That is what I usually do as well - use print statements liberally during your debug phase when writing new code. you can comment them out later or delete them completely.

OpenStudy (rsmith6559):

The module probably is running, but if it doesn't have any output, it won't output anything. The computer will only do exactly what you tell it to, not what you want it to!

OpenStudy (donn):

http://pythontutor.com/visualize.html#

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!