1. 程式人生 > >流程控制及循環控制等

流程控制及循環控制等

cor 分支 多分支 數據 while 循環 print count cnblogs

1.可變數據類型:在id不變的情況下,value可以改變(列表,字典)

2.可變數據類型:value改變,id也跟著改變

1.數字

2字符串

3布爾

運算符:

以下假設變量:a=10,b=20技術分享

比較運算

以下假設變量:a=10,b=20技術分享

賦值運算

以下假設變量:a=10,b=20技術分享

邏輯運算技術分享

流程控制:

單分支, 雙分支,多分支。

技術分享

技術分享

技術分享

補充(is比較的是ID,==比較的是==)

課程金典程序

1 count=0
2 while count<10:
3     if count==4:
4         break
5     print(count)
6     count+=1

1 count=0
2 while count<10: 3 if count>=4 and count>=6: 4 count+=1 5 continue 6 print(count) 7 count+=1

while True:
    score=int(input(請輸入成績:))
    if score>=90:
        print(A)
    if score>=80:
        print(B)
    if score>=70:
        print(C)
    
if score>=60: print(D) if score>=50: print(E)

 1 alex=56
 2 while True:
 3 age=int(input(猜一猜年齡))
 4     if age>alex:
 5         print(太大了)
 6     elif age<alex:
 7         print(太小了)
 8     else 9         print(猜對了)
10         break
11         

 1 alex=56
 2
count=1 3 while count<=3: 4 age=int(input(猜一猜年齡)) 5 if age>alex: 6 print(太大了) 7 count+=1 8 elif age<alex: 9 print(太小了) 10 count+=1 11 else: 12 print(猜對了) 13 break

 1 alex=56
 2 count=1
 3 while True:
 4     if count>3:
 5         print(您的次數已用完)
 6         break
 7     age=int(input(猜一猜年齡))
 8     if age>alex:
 9         print(太大了)
10     elif age<alex:
11         print(太小了)
12     else:
13         print(猜對了)
14         break
15     count+=1

 1 alex=56
 2 count=0
 3 while True:
 4     if count>2:
 5         break
 6     age=int(input(猜一猜年齡))
 7     if age>alex:
 8         print(太大了)
 9     if age<alex:
10         print(太小了)
11     if age==alex:
12         print(猜對了)
13         break
14         count+=1

流程控制及循環控制等