diff options
Diffstat (limited to 'Doc/includes/sqlite3/execute_1.py')
| -rw-r--r-- | Doc/includes/sqlite3/execute_1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/sqlite3/execute_1.py b/Doc/includes/sqlite3/execute_1.py index 763167c..f864a89 100644 --- a/Doc/includes/sqlite3/execute_1.py +++ b/Doc/includes/sqlite3/execute_1.py @@ -13,4 +13,4 @@ cur.execute("insert into people values (?, ?)", (who, age)) # And this is the named style: cur.execute("select * from people where name_last=:who and age=:age", {"who": who, "age": age}) -print cur.fetchone() +print(cur.fetchone()) |
