2
我的第一個問題在這裏。 如何從讀取我的txt文件的函數中獲取保存在變量中的數組。 Ty。 Ty。從函數返回一個數組,從文件中讀取
def reading(a):
read = open(a, "r")
rows = read.readlines()
print(rows)
read.close()
return rows
reading("datoteka.txt")
print(reading)
基本上我得到這個作爲輸出: [ 'prvi紅色\ N','25 \ n」, '紅TRECI \ n', 'cetvrti紅'] [函數在0x02B13B70>
讀