Testing Driver

2021年5月2日

Python进阶之for单循环

摘要: # Work hard and try agin. Done is better than perfect.# 进行for 循环的学习for i in range(1,4): print('i=',i) # 步长默认1,取1不取4print(' ')s=0for i in range(1,5,2): 阅读全文

posted @ 2021-05-02 17:43 最强功能 阅读(393) 评论(0) 推荐(0)

导航

Testing Driver