-2
txtファイルから変数に値をロードします。Pythonはtxtファイルには、次のようなものです
a.txt
['a','b','c'] #single line txt file
私が何をしたいのPythonコマンドラインで、次のとおりです。
>> f = open('a.txt','r')
>> a = f.readline() # want to put the list in to a, same as "a = ['a','b','c']"
私は何をすべきか? pythonの初心者は、考え方を考えることができません。
ありがとうございます!
を行い、これが正しいコードである:オープンと (" test.txtの」、R '')、Fとおり = f.read() B = A。 strip() c = eval(b) print c – Michael
ありがとう、とにかく。 :-) – Michael