《「笨辦法」學python3》Ex 3

2021-08-31 06:52:53 字數 1272 閱讀 3823

在python3中進行數字計算和真值判斷. 與c++相同,+,-,/,*,%

#統計我的雞

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

#母雞25+30/6=30

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

#公雞100-25*3%4=97

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

#統計我的蛋

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

#3+2+1-5+4%2-1/4+6=7

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

#3+2<5-7 對麼?(要不要考慮括號)

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

#輸出3+2<5-7對不對結果:false

print(3+2<5-7)

#分別輸出3+2=5 和5-7=-2

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.")

#ture ture false

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

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

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

ps c:\users\xue weiruan\github> python ex3.py

i will now count my chickens:

hens 30.0

roosters 97

now i will count the eggs:

6.75

is it true that 3+2<5-7?

false

what is 3+2? 5

what is 5-7? -2

oh, that's why it's false

how about some more.

is it greater? true

is it greater or equal? true

is it less or equal? false

ps c:\users\xue weiruan\github>

笨辦法學python3 ex6

習題6 f 格式化 f string type of people 10 x f there are types of people.binary binary do not don t y f those who know and those who 注意 f 字串的形式,我把變數放置到 此位置 ...

笨辦法學Python3 ex44 學習筆記

第44個練習是關於繼承。第乙個例子講的是隱式繼承,什麼是隱式繼承呢?簡單地說,當a類中存在的特性或方法x,而b類中沒有定義,直接從a類中繼承得來,這種方式得繼承就是隱式繼承。如下面得 ex44a.py class parent object defimplicit self print parent...

《「笨辦法」學python3》附錄 Ex 0

本科非計算機專業,基本零基0礎 python3 入門。筆記會概述每個練習的核心內容,分享遇見的問題以及解決方案,歡迎各位批評指正。zed強調命令列練習,命令列鏈結程式和計算機,使程式可以控制計算機。計算機中,shell是乙個殼,是指 提供使用者使用介面的軟體 基本shell分成兩類 1.圖形介面 微...