Skip to content
Snippets Groups Projects
Commit 202db0ef authored by Eunice Sarah Siregar's avatar Eunice Sarah Siregar
Browse files

Delete tesQuery.py

parent 9f0cf390
No related merge requests found
import sqlite3
con = sqlite3.connect("fitu.db")
cur = con.cursor()
daftarLatihan = cur.execute("SELECT * FROM daftar_latihan")
count = 1
for i in daftarLatihan.fetchall():
print(f"{count}. {i[0]}")
count+=1
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment