創建具有名稱的變量我想用類似於如下的實際工作的一些代碼:Python從範圍
P = 20
n = 1
for x in range(1, P+1):
Ax = n #Hoping that you can name the variable from the current element in the range
n = n+1
我要讓可變因素A1,A2,A3 .... A20他們將有在這個例子中值爲1,2,3 ... 20 ...
這是否可能,以及它需要什麼編碼?
乾杯
你**真的**不想這樣做。改用列表。[將數據保留在變量名稱之外](http://nedbatchelder.com/blog/201112/keep_data_out_of_your_variable_names.html)。 –