对 Python 来说很新,所以我正在努力挑选这部分。我想将数组放入文本文件并在我的 .py 中调用它们
这是我所拥有的:
import json
myfile = open("lists.txt")
myVars = json.load(myfile)
myVars['alist']
并在 lists.txt 文件中:
{
"alist" : [
["1", "2", "3"]
],
"b" : [
["test"]
]
}
我在我的 .py 中调用了它:
if message.body == "!r alist":
room.message("I recommend: " + choice(alist))
print("did it work?")
(选择只是得到一个随机的,等等)