How do I use raw_input in Python 3

import sys print(sys.platform) print(2**100) raw_input() I am using Python 3.1 and can’t get the raw_input to “freeze” the dos pop-up. The book I’m reading is for Python 2.5 and I’m using Python 3.1 What should I do to fix this? Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the … Read more

Python debugging tips

Its goal is to provide all the niceties of modern GUI-based debuggers in a more lightweight and keyboard-friendly package. PuDB allows you to debug code right where you write and test it – in a terminal. If you’ve worked with the excellent (but nowadays ancient) DOS-based Turbo Pascal or C tools, PuDB’s UI might look familiar.