1樓:匿名使用者
>>> dict_info={}
>>> for item in range(1,101):
... dict_info[item]=1
...>>> len(dict_info)
100>>> dict_info.keys()
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100]
>>>
2樓:
a = {}
[a.setdefault(str(i), '') for i in xrange(1, 101)]
3樓:
d = {}
for i range(100):
d[str(i)] = i
python 2 6中SyntaxError是什麼錯誤
你這兩個py檔案有一出很明顯的差別,看出來了嗎?左邊個檔案 右邊個檔案 你左邊個檔案的print的括號只有一半,另一半沒有,右邊個檔案是正確的,所以可以正常執行而不報錯 補充一句,當 作站位符站位一個引數的時候,可以不用加 兩個和兩個上才要加括號 第5行起 print 最後你少了一個右邊到括號 py...
在Arcgis中怎麼匯入python語言編寫的方法進行插值
建議題主直接做成python指令碼的工具箱 即新增 指令碼工具 吧。怎麼用python開發arcgis arcgis python 中add in 怎麼開啟?5 那是開發的一種方式,如果是別人給你的add in工具,安裝後在arcmap中開啟,然後直接拖拽上去就行了 python 怎麼在arcgis...
請教高手,我在C C 中嵌入python,用PyImport
include include using namespace std void helloworld void add void testtransferdict void testclass int main 呼叫輸出 hello world 函式void helloworld 呼叫add函式,...