Python編程Day4——if判斷、while迴圈、for迴圈

来源:https://www.cnblogs.com/zhouqinmei/archive/2019/03/21/10574958.html
-Advertisement-
Play Games

一、if判斷 語法一: 二、while迴圈 三、for迴圈 ...


、if判斷

語法一:

if條件:
代碼塊1
代碼塊2
代碼塊3
 1 示例:
 2 sex='female'
 3 age=18
 4 is_beautiful=True
 5 if sex =='female'and age>16  and age<20  and is_beautiful:
 6     print('開始表白。。。')
 7 else:
 8     print('阿姨好。。。')
 9     
10 print('other  code1...')
11 print('other  code2...')
12 print('other  code3...')
13 
14 執行結果:第一個條件通過則輸出:開始表白、other  code1......,第一個條件不通過則輸出:阿姨好
 1 示例:
 2 sex='female'
 3 age=18
 4 is_beautiful=True
 5 if_sex =='female'and age>16  and age<20  and is_beautiful:
 6     print('開始表白。。。')
 7 print('other  code1...')
 8 print('other  code2...')
 9 print('other  code3...')
10 執行結果:開始表白、other  code1.....
語法二:
if條件:
代碼塊1
代碼塊2
代碼塊3

else:條件不成立時執行的子代碼塊
代碼塊1
代碼塊2
代碼塊3
 1 示例:
 2 sex='female'
 3 age=18
 4 is_beautiful=True
 5 if sex =='female'and age>16  and age<20  and is_beautiful:
 6     print('開始表白。。。')
 7 else:
 8     print('阿姨好。。。')
 9     
10 print('other  code1...')
11 print('other  code2...')
12 print('other  code3...')
13 
14 執行結果:第一個條件通過則輸出:開始表白、other  code1......,第一個條件不通過則輸出:阿姨好

 


語法三:
if條件1:
if條件2:
代碼塊1
代碼塊2
代碼塊3
 1 示例:
 2 sex = 'female'
 3 age = 18
 4 is_beautiful = True
 5 is_sucessful=True
 6 height=1.70
 7 
 8 if sex == 'female' and age > 16 and age < 20 and is_beautiful  and height >1.60  and  height <1.80:
 9     print('開始表白。。。')
10     if is_sucessful:
11           print('在一起。。。')
12      else:
13           print('什麼愛情不愛情的。。。。。')
14 else:
15 print('阿姨好。。。')
16 
17 print('other  code1...')
18 print('other  code2...')
19 print('other   code3...')
 1 # 註意在代碼過長的情況下可以使用\來進行分隔:
 2 # is_beautiful=\
 3 #     True
 4 # print(is_beautiful)
 5 # 輸出結果:True
 6 '''
 7 sex = 'female'
 8 age = 18
 9 is_beautiful = True
10 is_sucessful=True
11 height=1.70
12 
13 if sex == 'female' and age > 16 and age < 20 and is_beautiful  \
14         and height >1.60  and  height <1.80:
15     print('開始表白。。。')
16     if is_sucessful:
17           print('在一起。。。')
18     else:
19           print('什麼愛情不愛情的。。。。。')
20 else:
21     print('阿姨好。。。')
22 
23 print('other  code1...')
24 print('other  code2...')
25 print('other  code3...')
語法四:
if條件1:
代碼塊1
代碼塊2
代碼塊3
elif條件2:
代碼塊1
代碼塊2
代碼塊3
elif條件3:
代碼塊1
代碼塊2
代碼塊3
else:
代碼塊1
代碼塊2
代碼塊3
 1 示例:如果:成績>=90,那麼:優秀
 2 
 3        如果成績>=80且<90,那麼:良好
 4 
 5        如果成績>=70且<80,那麼:普通
 6 
 7        其他情況:很差
 8 
 9 score=input('請輸入成績/please input your score:   ')
10 score=int(score)
11 if score>=90:
12     print('優秀')
13 elif score>=80  and   score<90:
14     print('良好')
15 elif score>=70 and  score<80:
16     print('普通')
17 else:
18      print('很差')

 二、while迴圈

語法:
while 條件
代碼1
代碼2
代碼3

1 示例:
2 while  True:
3     name=input('please input your name:')
4     pwd=input('please input your password:')
5 
6     if name =='egon' and  pwd =='123':
7         print('login successful')
8     else:
9          print('username  or password error')註:現這個迴圈是在持續運行中
 1 方式一:條件改為False,在條件改為False時不會立即結束掉迴圈,而是要等到下一次迴圈判斷條件時才會結束。
 2 示例:
 3 tag=True
 4 while tag:
 5     name=input('please input your name:')
 6     pwd=input('please input your password:')
 7 
 8     if name =='egon' and  pwd =='123':
 9         print('login successful')
10         tag=False
11     else:
12          print('username  or password error')
13      print('===>>>')
 1 方式二:while+break
 2 break一定要放在迴圈體內,一旦迴圈體執行到break就會立即結束本層迴圈
 3 
 4 示例:
 5 while  True:
 6     name=input('please input your name:')
 7     pwd=input('please input your password:')
 8 
 9     if name =='egon' and  pwd =='123':
10         print('login successful')
11         break           #運行正確則結束本層迴圈
12     else:
13          print('username  or password error')
14 
15     print('===>>>>')  # (這個無法執行)
 1 方式三:
 2 while+continue 3 結束本次迴圈,直接進入下一次迴圈
 4 
 5 count=1
 6 while count<6:     #count=1,2,3,4,
 7 if count == 4:
 8 continue
 9 print(count)
10 count +=1            #現執行結果在4這個數進行死迴圈
11 
12 count=1
13 while count<6:     #count=1,2,3,4,5
14     if count == 4:
15     count += 1
16     continue
17 print(count)
18 count += 1
19     
20 while  True:
21     name=input('please input your name:')
22     pwd=input('please input your password:')
23 
24     if name =='egon' and  pwd =='123':
25         print('login successful')
26         break           #運行正確則結束本層迴圈
27     else:
28         print('username  or password error')
29         continue        #結束本次迴圈
30     print('===>>>>')  # (這個無法執行)

三、for迴圈

1 for迴圈的強大之處在於迴圈取值
2 l=['a','b','c','d','e']
3 i=0
4 while i< len(l):
5    print(l[i])
6     i +=1
7 
8 for x in l:  #x='b'
9 print(x)
1 dic={'name':'egon','age':18,'gender':'male'}
2 for x in dic:
3      print(x,dic[x])
 1 1、for+else
 2 names=['egon','kevin111_dsb','alex_dsb','mac_dsb']
 3 for name in names:
 4     if name=='kevin_dsb':
 5         break
 6     print(name)
 7 else:
 8     print('=======>')  #  執行結果是正常執行完所有姓名並結束
 9     '''
10 '''
11 names=['egon','kevin_dsb','alex_dsb','mac_dsb']
12 for name in names:
13     if name=='kevin_dsb':
14         break
15     print(name)
16 else:
17     print('=======>')  #  執行結果是輸出egon
18     '''
19 '''
1 2、for+continue
2 
3 nums=[11,22,33,44,55]
4 for x in nums:
5     if x == 22 or x == 44:
6         continue
7     print(x)  #執行結果是11、33、55
 1 3、for+range()
 2 
 3 range的用法  (cmd中執行結果)
 4 >>> range(1,5)
 5 [1, 2, 3, 4]
 6 >>> for i in range(1,5):
 7 ...     print(i)
 8 ...
 9 1
10 2
11 3
12 4
13 >>> range(1,5,1)
14 [1, 2, 3, 4]
15 >>> range(1,5,2) # 1 3
16 [1, 3]
1 示例:for i in range(1,5,2):  #range是只顧頭不顧尾,2代表步長指1,1+2=3,3+2=5(不包含5所以不輸出)
2           print(i)  #  執行結果是1,3
3 
4 for i in range(5)   #  >>>>0,1,2,3,4
5 print(i)  #  >>>>0,1,2,3,4
1 4、for嵌套
2 for i in range(3):   # >>>>i=0,1,2
3     for j in range(4):#  >>>>j=0,1,2,3
4         print(i,j)
5         
6 # 最終執行結果:  如i=0(不變)j=0        0 0      1 0     2 0
7                 i = 0(不變)j=1        0 1      1 1     2 1
8                 i = 0(不變)j=2        0 2      1 2     2 2
9                 i = 0(不變)j=3        0 3      1 3     2 3

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天就把剩餘板塊給一一填充,意在做成一個系列,讓大家看了這個系列後,明白自己選擇了IT這條路後,應該乾什麼,怎麼乾。 相信大家看完以上兩篇文章後多少都會有個問號,除了我推薦的「笨辦法」外,就沒什麼資料的,而很多新手村玩家都喜歡問一個問題:有什麼資料可以參考的嗎?有什麼實戰項目可以借鑒的嗎? 今天... ...
  • %原圖像顯示picture_read = imread('1.jpg');subplot(2,4,1);figure0 = imshow(picture_read);title('原圖') %圖像灰度化picture_gray = rgb2gray(picture_read);subplot(2,4 ...
  • 一、前言 剛換工作,為了更快的學習框架和瞭解業務,基本每天都會加班,導致隔了幾天沒有進行總結,心裡總覺得不安,工作年限越長越感到學習的重要性,堅持下去!!! 經過前兩篇的總結,已經基本掌握了mybatis的開發模式,這篇主要是總結SqlMapConfig.xml文件的配置 SqlMapConfig. ...
  • 個人項目實戰-四則混合運算 coding.net源碼地址 :https://git.dev.tencent.com/qyj814/fours.git 一.實驗要求 基本任務: 使用JAVA編程語言,獨立完成一個3到5個運算符的四則運算練習的軟體。 軟體基本功能要求如下: 程式可接收一個輸入參數n,然 ...
  • 在當前目錄以及當前目錄的所有子目錄下查找文件名包含指定字元串的文件,並列印出相對路徑: ...
  • 多線程 線程 線程是操作系統能夠進行運算調度的最小單位。它被包含在進程之中,是進程中的實際運作單位。一條線程指的是進程中一個單一順序的控制流,一個進程中可以併發多個線程,每條線程並行執行不同的任務。 進程 程式的執行實例稱為進程。 每個進程提供執行程式所需的資源。進程具有虛擬地址空間、可執行代碼、系 ...
  • 一,依賴註入:Dependency Injection(DI)與控制反轉(IoC),不同角度但是同一個概念。首先我們理解一點在傳統方式中我們使用new的方式來創建一個對象,這會造成對象與被實例化的對象之間的耦合性增加以致不利於維護代碼,這是很難受的。在spring框架中對象實例改由spring框架創 ...
  • 前面介紹的幾種異常,其實都存在這樣那樣的邏輯問題,屬於程式員的編碼手誤。還有一大類系統錯誤,錶面上看不出什麼問題,但是程式仍然運行不下去,茲舉二例說明。第一個例子且看下列的測試代碼: 執行測試代碼中的testUnlimitedString方法,一開始程式正常列印日誌,然而不一會兒就報錯退出了,錯誤信 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...