本文介绍: 逻辑运算符 and or not。

运算符

赋值运算符

a = 1
a,b,c = 1,2,'ceshi'
a=b=c=10
d = 10
d += 1 # 等同于 d = d + 1
d -= 1

±*/

//

%

**

a = int(input('请输入第一个数据:'))
b = int(input('请输入第二个数据:'))
print(f'a+b={a+b}')
print(f'a-b={a-b}')
print(f'a*b={a*b}')
print(f'a/b={a/b}')
# 取整
print(f'a/b取整={a//b}')
# 取余(取模)
print(f'a/b取余={a%b}')
# 幂次方
print(f'a的b次方={a**b}')

比较运算符

print(a==b)
print(a>b)
print(a!=b)
print(a>=b)

逻辑运算符 and or not

a=1
b=2
c=3

print(a>b and a>c)
print(a>b or a>c)
print(not a>b)

# and 两边为true,则结果true
# or 一边为true,则结果true
# not 取反

原文地址:https://blog.csdn.net/Mylily_123/article/details/134656384

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_1369.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注