1 四則運算:
a = 9b = 2print(a +b)
print(a -b)
print(a *b)
print(a / b) #
正常除法
print(a // b) #
向下取整
print(a % b) #
取模,即除法的餘數
print(a ** b) #
冪,a的b次冪
結果:
117184.54
181
2 比較運算:
a = 9b = 2print(a ==b)
print(a !=b)
print(a >b)
print(a print(a >=b)
print(a <= b)
結果:
falsetrue
true
false
true
false
3 賦值運算子:
a = 10a += 1 #a = a + 1
(a)a -= 1 #
a = a - 1
(a)a *= 3 #
a = a * 3
(a)a /= 3 #
a = a / 3
(a)a %= 4 #
a = a % 4
(a)a **= 2 #
a = a ** 2
(a)a //= 2 #
a = a // 2
print(a)
結果:
111030
10.0
2.04.0
2.0
4 邏輯運算子:
a = 9b = 2c =noneif(a>5 and b>6):
print('
true')
else
:
print('
false')
if(a>5 or b>5):
print('
true')
else
:
print('
false')
if(c is
notnone):
print('
true')
else
:
print('
false
')
結果:
falsetrue
false
5 成員運算子:
my_tuple = (1, 2, 3, 4, 5)if(1 in
my_tuple):
print('
true')
else
:
print('
false')
if(10 not
inmy_tuple):
print('
true')
else
:
print('
false
')
結果:
truetrue
6 身份運算子
a = [10, 20, 30]b = [10, 20, 30]
if(a is
b):
print('
true')
else
:
print('
false')
print(id(a)) #
記憶體位址
print(id(b))
結果:
false44016968
43987272
is 用於判斷兩個變數是否同乙個記憶體位址, == 用於判斷變數的值是否相等。
資料庫技術與應用習題6
1單選 2分 下面選項中,關於mysql中開啟事務的sql語句,正確的是 a.stop transaction b.end transaction c.begin transaction d.start transaction 答案 d 2單選 2分 下面選項中,用於實現事務回滾操作的語句是 a.r...
TP6安裝單應用和TP6安裝多應用
php 7.1.0 必須使用composer安裝更新tp61 第一次安裝,在命令列下面,切換到你的web根目錄下 面並執行下面的命令 tp是專案檔名稱可以修改 composer create project topthink think tp2 詳細安裝檢視官方文件 1 在命令列下面,切換到你的專案...
ES6資料的解構賦值使用及應用
es6 允許按照一定模式,從陣列和物件中提取值,對變數進行賦值,這被稱為解構 destructuring 例如 let x 1,y 2 x,y y,x 函式只能返回乙個值,如果要返回多個值,只能將它們放在陣列或物件裡返回。有了解構賦值,取出這些值就非常方便 解構賦值可以方便地將一組引數與變數名對應起...