python基礎之基本運算符

Python基本運算符

算數運算符

在這裡插入圖片描述

# + - * / % ** //  算數運算符
# 定義如下運算符
a=7
b=3
print(a+b)
print(a-b)
print(a*b)
print(a/b)
print(a%b)
print(a//b) # 地板除,相除取整,也可進行復合運算

在這裡插入圖片描述

比較運算符

在這裡插入圖片描述

# == != < > >= <= 比較運算符
a,b=10,5
print(a==b)
print(a!=b)
print(a<=b)
print(a>=b)
print(a<b)
print(a>b)

在這裡插入圖片描述

邏輯運算符

在這裡插入圖片描述

# and or not 邏輯運算符
# and  條件嚴格,都為真為真
# or 都為假為假
# not 非 真假切換,隻需在前面加上not就可,對於需要取反操作的
a,b,c,d=23,16,26,56
print(a+b>c and c<d)
print(a>b or c<d)
print('--------not-------')
print(a>b)
print(not a>b)

在這裡插入圖片描述

# 優先級
# () -> not -> and -> or
print (2>1 and 1<4 or 2<3 and 9>6 or 2<4)

在這裡插入圖片描述

賦值運算符

在這裡插入圖片描述

# 賦值運算 (算術運算的補充)
# += -= /= %= **= *=
a=10
b=1
c=4
d=5
a+=c
print(a)
b*=d
print(d)
d**=c  ##數字為幾即為幾次方
print(d)

在這裡插入圖片描述

總結

本篇文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!

推薦閱讀: