标签:int color 1.0 2.0 python2 编码 style 保留 sci
python2中print函数不需要带括号
print ‘test‘
pytho3中print函数必须带括号
print("test")
python2中的默认编码是:ASCII
python3中的默认编码是:utf-8
Python2
print 1/2 #0 print 1.0/2.0 #0.5
python3
print(1/2)#0.5
python 2中不等于有两种表达方式:<>和!=
python3中只保留了一种:!=
标签:int color 1.0 2.0 python2 编码 style 保留 sci
原文地址:https://www.cnblogs.com/linshuhui/p/9409660.html