>> y="bbb">>> x+y'aaabbb'>>> print([1,2,3] + [4,5,])[1, 2, 3, 4, 5]>>> 10/33.3333333333333335>>> 10//3(地板除)3>>> 10%31>>>比较运_=if(or(day(o5)=1),month(o5)&"月","")">
赞
踩
+,-,*,/,//(取整数),%(取余)
>>> x="aaa"
>>> y="bbb"
>>> x+y
'aaabbb'
>>> print([1,2,3] + [4,5,])
[1, 2, 3, 4, 5]
>>> 10/3
3.3333333333333335
>>> 10//3(地板除)
3
>>> 10%3
1
>>>
>>> 10 == 10 True >>> 10 != 3 True >>> 10 > 3 True >>> 10 < 3 False >>> 10 >= 10 True >>> 10 <= 10 True >>> # 了解(**) >>> s1="abcdef" >>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。