python之路(一)
摘要:
初识python 1、输出1 2 3 4 5 6 8 9 10 2、1~100的和 3、1~100的所有奇数/偶数 4、1-2+3-4+5~+99-100的值 x=0while(x<101): if(x%2==1): print('',x) x=x+1 x=0while(x<101): if(x%2 阅读全文
posted @ 2018-11-04 16:32 轻路 阅读(87) 评论(0) 推荐(0)
posted @ 2018-11-04 16:32 轻路 阅读(87) 评论(0) 推荐(0)