📄 options.py
字号:
def readoptions():
opdict = {}
f = open("options.ini")
lines = f.readlines()
for l in lines:
if l == "\n":
continue
s = l[:-1].split(None, 1)
opdict[s[0]] = s[1]
return opdict
d = readoptions()
print d
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -