python初級學習day02迴圈判斷

2021-09-25 02:21:09 字數 1411 閱讀 5254

if語句

if 條件語句:

**

1兩種情況處理

age = input("請輸入年齡:")

age = int(age)

if age >= 18:

print("仗劍走天涯")

else:

print("回家**")

2多種情況判斷處理

# 進行不同情況的判斷處理

# >100 <0

# 90-100 a

# 80-89 b

# 60-79 c

# 60以下  d

socre = input("請輸入成績:")

socre = int(socre) # 轉換型別

if socre > 100 or socre < 0:

print("不合法的成績")

elif socre >= 90 and socre <= 100:

print("a")

elif socre >= 80 and socre <= 89:

print("b")

elif socre >= 60 and socre <= 79:

print("c")

else:

print("d")

3if巢狀

# 1. 機場入口安檢

# 2. 登機前安檢

k = input("是否攜帶違禁物品(0,沒有;1,攜帶):")

if int(k) == 1:

print("不好意思,您需要派出所一日遊")

else:

print("可以進站")

name = input("請出示您的身份證:")

if name == "小明":

print("親愛的上帝,你好,歡迎乘坐飛往天堂的單向航班")

else:

print("窮比,出門左拐,買票之後再來")

4比較運算子

5邏輯運算子

a = input("是否餓了,需要吃飯(0:不餓, 1:餓了):")

b = input("輸入支付寶餘額:")

if a == "1" and int(b) >= 20:

print("餓了,去吃飯")

else:

print("不好意思,食堂去不了")

a = input("請輸入數字a:")

a = int(a)

if a < 3 or a > 10:

# 輸出的是小於3或者大於10的數字

print(a)

a = input("請輸入數字a:")

a = int(a)

if not a > 3:

#輸出的是小於3的數字

print(a)

Python學習筆記 day02

一 組織列表 1.s.sort 方法可以將列表中的元素按照從小到大的順序排序,而且是永久的改變了 s的元素順序。如果想要倒序排序,則使用 s.sort reverse true 即可。2.sorted s 方法可以將列表 s按照從小到大的順序顯示出來,但只是臨時性地讓 s可以按照從小到大的順序顯示,...

Python學習 Day02 語言元素

對於每個變數我們需要給它取乙個名字,就如同我們每個人都有屬於自己的響亮的名字一樣。在python中,變數命名需要遵循以下這些必須遵守硬性規則和強烈建議遵守的非硬性規則。硬性規則 pep 8要求 在對變數型別進行轉換時可以使用python的內建函式 準確的說下面列出的並不是真正意義上的函式,而是後面我...

python全棧學習 day02

pycharm 安裝設定 啟用步驟 1 改host 2.輸入啟用資訊,注意有效期.python 邏輯運算子 返回的均為bool值 與 and a and b或 or a or b非 not not a格式化輸出 name input your name is age input your age i...