Re: [sqlite] library interfering with input function when running in python console

2019-03-22 Thread Jean-Luc Hainaut
On 20/03/2019 22:48, Anthony-William Thibault wrote: Hello there! Consider the following program Import sqlite3 x = Input("Enter your name”) print(“Hello, ” + x) When you run the code directly with python (double click the .py file or choose open with python) it won’t work Not surprising,

Re: [sqlite] library interfering with input function when running in python console

2019-03-22 Thread Mike King
I think this is a problem with the Python SQLite wrapper you are using not SQLite itself. Maybe a better place to ask would be on their mailing list. Also, consider giving a bit more detail as to why it fails as this may help them diagnose the issue. Cheers Mike On Fri, 22 Mar 2019 at 15:10,

[sqlite] library interfering with input function when running in python console

2019-03-22 Thread Anthony-William Thibault
Hello there! Consider the following program Import sqlite3 x = Input("Enter your name”) print(“Hello, ” + x) When you run the code directly with python (double click the .py file or choose open with python) it won’t work However, the following code will work x = Input("Enter your name”)