SQL - SQL with Python
ยท
๐งฉ SQL
โ
Python ํ๊ฒฝ์์ SQLite ์ฌ์ฉํ๊ธฐPlaceholderimport sqlite3connection = sqlite3.connect("users.db")cursor = connection.cursor()def init_table(): cursor.execute( """ CREATE TABLE users ( user_id integer primary key autoincrement, username text not null, password text not null ); """ ) cursor.execute( """ insert into users (username, password) ..