《Python程式設計 從入門到實踐》 基礎知識總結4

2021-08-18 16:28:17 字數 2643 閱讀 2858

條件測試

if 語句

設定 if 語句格式 

乙個簡單示例

cars = ['audi', 'bmw', 'subaru', 'toyota']

for car in cars:

if car == 'bmw':

print(car.upper())

else:

print(car.title())

audi

bmwsubaru

toyota

條件測試

(在python中檢查是否相等時區分大小寫)

car = 'bmw'

car == 'bmw'

true

car = 'audi'

car == 'bmw'

false

car = 'audi'

car == 'audi'

false

word= 'a'

if word!= 'b':

print("false")

>>> age = 19

>>> age < 21

true

>>> age <= 21

true

>>> age > 21

false

>>> age >= 21

false

>>> age_0 = 22

>>> age_1 = 18

>>> age_0 >= 21

and age_1 >= 21

false

>>> age_1 = 22

>>> age_0 >= 21

and age_1 >= 21

true

>>> age_0 = 22

>>> age_1 = 18

>>> age_0 >= 21

or age_1 >= 21

true

>>> age_0 = 18

>>> age_0 >= 21

or age_1 >= 21

false

>>> word = ['a', 'b', 'c']

>>>

'a'in

word

true

>>>

'd'in

word

false

word= ['a', 'b', 'c']

user = 'd'

if user not

inword:

print(user.title()) #

game_active = true

can_edit = false

if 語句

if conditional_test:

do something

age = 17

if age >= 18:

print("你比我大")

print("嗚嗚嗚")

else:

print("你比我小")

print("哈哈哈")

你比我小

哈哈哈

age = 12

if age < 4:

print("12<4")

elif age < 18:

print("12<18")

else:

print("666") #12<18

age = 12

if age < 4:

price = 0

elif age < 18:

price = 5

elif age < 65:

price = 10

else:

price = 5

print("你需要花費$" + str(price)) #你需要花費$5

age = 12

if age < 4:

price = 0

elif age < 18:

price = 5

elif age < 65:

price = 10

elif age >= 65:

price = 5

print("你需要花費$" + str(price)) #你需要花費$5

word = 

if 'a' in word:

print("a")

if 'b' in word:

print("b")

if 'c' in word:

print("c")

print("d")

abc

d

設定 if 語句的格式

Python 程式設計 從入門到實踐

1.官網安裝 3.環境配置 務必選中核取方塊add python to path 4.檢視 啟動python版本的命令 python 執行 print hello python world 5.終端執行x.py檔案 python x.py 7.檢視當前目錄中的所有檔案的命令 dir windows系...

Python程式設計從入門到實踐 基礎入門

python程式設計從入門到實踐 基礎入門 1 python中的變數 2 python首字母大寫使用title 方法,全部大寫upper 方法,全部小寫lower 方法 3 python中字串拼接使用 號 4 python中刪除字串的空格 刪除末尾空格的rstrip 刪除開頭空格的lstrip 刪除...

Python程式設計 從入門到實踐 1

內容總結自 python程式設計 從入門到實踐 安裝python3 安裝文字編輯器sublime text並配置python3環境 安裝sublime text tools new build system 將 untitled.sublime build 文件中的所有內容刪除,輸入以下內容 注意,...