笨辦法學python 習題3 數字和數學計算

2021-10-02 03:54:27 字數 1195 閱讀 1145

熟悉運算符號+

plus加號-

minus減號/

slash

斜槓除法

*asterisk

星號乘法

%percent

百分號除法的餘數

<

less-than

小於greater-than

大於號<=

less-than-equal

小於等於號

>=

greater-than-equal

大於等於號 例:

python2   1/2=0     1//2=0  1/2.0=0.5

python3   1/2=0.5  1//2=0  1/2.0=0.5

print("i will now count my chickens:")

#母雞數量

print("hens", 25 + 30 / 6)

#公雞數量

print("roosters", 100 - 25 * 3 % 4)

#雞蛋數量

print("now i will count the eggs:")

#此處為python3,1/4=0.25,如為python2 1/4=0 結果為7

print(3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6)

#比較返回true和false

print ("is it true that 3 + 2 < 5 - 7?")

print(3 + 2 < 5 - 7)

print ("what is 3 + 2?", 3 + 2)

print ("what is 5 - 7?", 5 -7)

print (" oh, that's why it's false.")

print ("how about some more.")

print ("is it greater?", 5 > -2)

print ("is it greater or equal?", 5 >= -2)

print ("is it less or equal?", 5 <= -2)

列印結果

《笨辦法學Python》 習題3

加分習題 系統 mac os 10.14 python 2.7.10 版本 笨辦法學python 第四版 print i will now count my chickens print hens 25 30 6.0 print roosters 100 25 3 4 print now i wil...

笨辦法學Python 3 習題6

交作業啦 ex6.py 建立了乙個名叫types of people的變數,並將其設為等於10 types of people 10 建立了乙個名叫x的變數,並將其設為f string x f there are types of people.建立了乙個名叫binary的變數,並將其設為字串 bi...

《笨辦法學python》習題38 40

mystuff 然後作者又給出了乙個錯誤的情況 class thing object def test hi print hia thing a.test hello 錯誤原因是test 只可以接受乙個引數,卻給了兩個。也就是 a.test hello 實際上是test a,hello 從這裡開始到...