I am running a Python program that wants to accept a raw_input, which the ippython laptop does not. (known limitation)
What is the recommended way to achieve functionality? (work?) I would like to do it in order to be able to run the program, accept input data and respond to them (a choice will be made based on the information received), as well as request information about the user and user password.
Of course, I would like to make as little violence as possible over existing code.
I found IPython.utils.io.raw_input_ext (prompt = ``, ps2 = '...') in Ipython docs, but it calls raw_input and gets the same error that is not implemented
dartdog
source share