有什麼辦法給Python中的數組中的鍵賦值?將值傳遞給Python中的數組索引
例在PHP中:
$inputArr = array(
'vertex'=>values[0],
'visited'=>values[1],
'letter' => $values[2]
)
這是我嘗試在Python做的方式:你想用dict
s
file_name = input('Enter a file name: ')
f = open(file_name, 'r')
data = f.readlines() //Read the lines
for line in data:
values = line.split(' ') Split line following the spaces
inputArr = array(
'vertex'=>values[0], //Pass each value to a key in that array
'visited'=>values[1],
'letter' => $values[2]
)
print (inputArr)
你在你的 '信' 線路上有一個錯誤 - > '信'=> $值[2]。另外,python中的數組是dicts。所以請嘗試使用字典 – virtuexru