>>> import sqlite3
>>> con = sqlite3.connect("lotto.sqlite")
>>> csr = con.cursor()
>>> csr.execute("select seq, no1 from mylotto")
<sqlite3.Cursor object at 0x03657C20>
>>> _dict = dict([(row[0], row[1]) for row in csr])
>>> print(type(_dict))
<class 'dict'>
>>> print(_dict)
{1: 2, 2: 4, 3: 3, 4: 3, 5: 2}
>>>
Convert the list of type tuple in key value structure to dictionary
|
2019.09.25 01:16:56
|
2019.09.25 01:22:40
|
587
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2020.01.24
2020.01.18
2020.01.17
2020.01.12
2019.09.25
2019.09.24
2019.09.16
2019.09.14
2019.09.03
2019.09.03