8 lines
118 B
Python
8 lines
118 B
Python
import shelve
|
|
|
|
#初始化数据库文件
|
|
with shelve.open('main') as db:
|
|
db['bin_name'] = 1
|
|
db.close()
|
|
|
|
exit() |