Oct-01-2022, 02:24 AM
Pages: 1 2
Oct-01-2022, 04:35 PM
That is because the new line is not part of your program. When you run a python program the program gets compiled into bytecodes. Typing new lines into a program during debugging does not perform the compile step. The bytecodes, the actual program you are running, are unchanged.
You can execute python commands you type (or copy/past) in the debug terminal. The debug terminal is also useful for inspecting the values of objects.
You can execute python commands you type (or copy/past) in the debug terminal. The debug terminal is also useful for inspecting the values of objects.
Oct-02-2022, 12:18 AM
Hi deanhystad,
Thanks for the information my doubt clear now.
Thanks
mg
Thanks for the information my doubt clear now.
Thanks
mg
Pages: 1 2