美文网首页
Python学习|一小时快速入门python(二)

Python学习|一小时快速入门python(二)

作者: lfpwhy | 来源:发表于2017-05-21 11:20 被阅读0次

1.python运算

数学运算:+, -, *, /, **, %

python之数学运算
# 加法
print(9+3)
# 减法
print(9-3)
# 乘法
print(9*3)
# 除法print(9/3)
# 求余数
print(10%3)
# 乘方 print(3**2)

判断:==, !=, >, >=, <, <=, in

python之判断
# 等于
print(9==3)
# 不等于
print(9!=3)
# 大于,大于等于
print(4>3,4>=3)
# 小于,小于等于
print(3<3,3<=3)

逻辑运算:and, or, not

python之逻辑运算
# “与”运算:一假为假
print(9==3 and 9>3)
# "或"运算:一真为真
print(9==3 or 9>3)
# “非”运算:“非”运算非真即假
print(not 9==3)

本文来自经验备忘

相关文章

网友评论

      本文标题:Python学习|一小时快速入门python(二)

      本文链接:https://www.haomeiwen.com/subject/mwvmxxtx.html