python2和python3系列之间的区别

python2和python3系列之间的区别 (1)3系列默认UTF-8编码,在处理英文和中文时一样方便。 (2)用print函数代替了print·语句,example: python2:>>>print “Hello World” python3:>>>print(“Hello World”) python2:>>>print x, python3:>>>print(x,end=’,’) (3)
相关文章
相关标签/搜索