码迷,mamicode.com
首页 > 编程语言 > 详细

for(i=0,j=0;i<10,j<10;i++,j++)用python怎么写

时间:2014-12-05 12:54:15      阅读:1793      评论:0      收藏:0      [点我收藏+]

标签:sp   for   on   bs   nbsp   python   br   ip   print   

for i,j in zip(range(10),range(10)):
    i+=1
    j+=1


>>> i=j=0
>>> while i<10 and j<10:
    i+=1
    j+=1

for (x,y) in zip(range(10),range(10)): print x,y

for (i,j) in [(x,x) for x in range(0,10)]:        print str(i)+"="+str(j)

for(i=0,j=0;i<10,j<10;i++,j++)用python怎么写

标签:sp   for   on   bs   nbsp   python   br   ip   print   

原文地址:http://my.oschina.net/u/855532/blog/352688

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!