2018年7月20日
摘要: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 4 # while 循环练习题 5 #1. 使用while循环输出1 2 3 4 5 6 8 9 10 6 """ 7 i = 0 8 while i < 10: 9 i +=1 10 if i = 阅读全文
posted @ 2018-07-20 14:14 Andy_ouyang 阅读(833) 评论(0) 推荐(0) 编辑