<div>
<b> "Key1" </b>
" Value1 "
<br>
<b> "Key2" </b>
" Value2 "
<br>
<b> "Key3" </b>
" Value3 "
<br>
在这里,我需要将键作为字典'A'中的键,并将值作为A [keys]的值
答案 0 :(得分:0)
我刚刚尝试了另一种方法,它正在工作。
使用zip()函数做出命令;
li = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]
i = 0
while i < len(li):
print(i)
if i == 3:
i = 10
print(i)
i += 1 # increment i at the end of the loop
现在data_dict是必需的字典,其中包含键和值