1、print
在 2.x 中 print 是一个语句,类似于 del 语句,语法为:
a = ‘中国梦‘
print a
或者
print ‘中国梦‘
在 3.x 中 print 是一个函数,带有括号, 其语法为:print(x,sep=‘ ‘, end=‘\n‘)
2、除法
2.x 中 3 / 2 等于 1,
3.x 中 3 / 2 等于 1.5, 3 // 2 才等于 1.
、cmp() 函数
、reduce() 函数
标签:中国 中国梦 除法 end style color reduce pytho red
1、print
在 2.x 中 print 是一个语句,类似于 del 语句,语法为:
a = ‘中国梦‘
print a
或者
print ‘中国梦‘
在 3.x 中 print 是一个函数,带有括号, 其语法为:print(x,sep=‘ ‘, end=‘\n‘)
2、除法
2.x 中 3 / 2 等于 1,
3.x 中 3 / 2 等于 1.5, 3 // 2 才等于 1.
、cmp() 函数
、reduce() 函数
标签:中国 中国梦 除法 end style color reduce pytho red
原文地址:https://www.cnblogs.com/shanger/p/12180741.html