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, this is not a Python program, for several reasons. Try
this one instead:
import sqlite3
x = raw_input("Enter your name")
print("Hello, " + x)
J-L Hainaut
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users