且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

python运算符

更新时间:2022-09-30 08:08:55

1.算数运算符

python运算符

例子:

a=30

b=40

c=a+b

print(c)


2.关系运算符

python运算符

例子:

a=30

b=40

print(a==b)


3.赋值运算符

python运算符

例子:

a=30

b=40

b+=a

print(b


4.逻辑运算符

python运算符

例子:

a=30

b=40

c=50

print(a>b or b<c)

print not(a>b and b<c)











本文转自 huangzp168 51CTO博客,原文链接:http://blog.51cto.com/huangzp/1974451,如需转载请自行联系原作者