python新手。我有一個包含一些信息的元組變量,我將它轉換成列表。當我使用我的for循環打印每個數據元素時,我得到了。如何從列表中獲取整數並在Python中構建哈希表?
for data in myTuple:
print list(data)
['1', " This is the system 1 (It has been tested)."]
['2', ' Tulip Database.']
['3', ' Primary database.']
['4', " Fourth database."]
['5', " Munic database."]
['6', ' Test database.']
['7', ' Final database.']
的問題是如何獲取的數(在單引號/雙引號),並將其存儲在下面的字典:
{’1’: 'This is the system 1 (It has been tested).', ’2’: 'Tulip Database.', ...}
謝謝。
'字典(myTuple)' – JBernardo
在這種情況下,密鑰將是*字符串*除非轉換 - 也許他們應該是數字? – user2864740