python Copy #!/usr/bin/python import sqlite3 as lite import sys con = None try: con = lite.connect('test.db') cur = con.cursor() ...
確定! 回上一頁