摘要:
1.python的设计初衷是简洁优美。 python2源码重复率高,不规范。违背了python简洁的设计初衷。 从而创建了python3。python3要比python2更加规范化。 2.默认编码方式不同。 python2的默认编码方式:ASCII码。 python3的默认编码方式:utf-8。 所 阅读全文
摘要:
一,while循环 1语法: while 条件: print(1)#此为循环体 2终止循环: 2.1.改变条件,使条件不成立。 count = 1 flag = True#标志位 while flag: print(count) count += 1 if count > 100: flag = F 阅读全文