python的for循环语句怎么写
3 回答
慕莱坞森
TA贡献1810条经验 获得超4个赞
for循环列表操作方法
>>>a = [1,2,3,4]
>>>for i in a:
>>> print i,
1 2 3 4
for循环元组赋值
>>>x =[('hello','python'),('very','good')]
>>>for (a,b) in x:
>>> print (a,b)
('hello', 'python')
('very', 'good')
还有for n in range(10)这种写法
添加回答
举报
0/150
提交
取消