摘要: #使用while循环输入1,2,3,5,6, ,8,9,10 ''' count =0 while count<10: count =count+1 if count==7: print(' ') else: print(count) ''' #求1-100以内所有数的和 '''count=0 sum=0 while count<100: ... 阅读全文
posted @ 2019-04-11 17:19 糖糖糖的唐 阅读(84) 评论(0) 推荐(0)
摘要: 1.计算机基础:CPU,内存,硬盘,操作系统 2.python出生于应用 3.python2与python3的区别(宏观): python2:源码不标准,混乱,重复代码太多 python3:统一标准,去除重复代码 4.python的环境 编译型:一次性将所有程序编译成二进制文件。 缺点:开发效率低, 阅读全文
posted @ 2019-04-10 23:05 糖糖糖的唐 阅读(81) 评论(0) 推荐(0)