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”)
print(“Hello, ” + x)
Import sqlite3

I tried running it using Anaconda and it worked, so it’s only when running it 
with the default Python compiler that I encountered this issue.

I tried on 2 different computers and the problem was still occurring

I’m using Python 3.7.2 and Windows 10


_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to