--- a/Doc/includes/sqlite3/execute_2.py +++ b/Doc/includes/sqlite3/execute_2.py @@ -7,6 +7,7 @@ who = "Yeltsin" age = 72 -cur.execute("select name_last, age from people where name_last=:who and age=:age", - {"who": who, "age": age}) +cur.execute("select name_last, age from people " + "where name_last=:who and age=:age", + {"who": who, "age": age}) print(cur.fetchone())