您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“Python循環(huán)方法是什么”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Python循環(huán)方法是什么”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
# 1.for...in循環(huán),依次把list或tuple中的每個元素迭代出來 studentNames = ["Willard","ChenJD","ChenBao","LinWenYu"] for studentName in studentNames: print(studentName) print("------------------------------------------------") # 計算1-10的累加和 sumOfNums = 0 for num in [1,2,3,4,5,6,7,8,9,10]: sumOfNums = sumOfNums + num print("1-10的累加和是:",sumOfNums) print("------------------------------------------------") # 使用range()函數(shù)進(jìn)行整數(shù)序列生成,range()函數(shù)為左閉右開 # 計算1-1000的累加和 sumOfNums = 0 for num in range(1001): sumOfNums += num print("1-1000的累加和是:",sumOfNums)
# 結(jié)果輸出:
Willard
ChenJD
ChenBao
LinWenYu
------------------------------------------------
1-10的累加和是: 55
------------------------------------------------
1-1000的累加和是: 500500
# 2.while循環(huán),只要條件滿足,就不斷循環(huán),條件不滿足時退出循環(huán) # 計算100以內(nèi)的奇數(shù)和 sumOfNums = 0 n = 99 while n > 0: sumOfNums += n n = n -2 print("100以內(nèi)的奇數(shù)累加和為:",sumOfNums)
# 結(jié)果輸出:
100以內(nèi)的奇數(shù)累加和為: 2500
# 3.使用break語句提前退出循環(huán) n = 1 while n < 20: if n > 10: break print("n的值為:",n) n += 1 print("The End.")
n的值為: 1
n的值為: 2
n的值為: 3
n的值為: 4
n的值為: 5
n的值為: 6
n的值為: 7
n的值為: 8
n的值為: 9
n的值為: 10
The End.
# 4.continue語句,跳過當(dāng)前循環(huán),直接開始下一次循環(huán) n = 10 while n < 20: n += 1 if n == 15: continue print("n的值為:",n) print("The End.")
# 結(jié)果輸出:
n的值為: 11
n的值為: 12
n的值為: 13
n的值為: 14
n的值為: 16
n的值為: 17
n的值為: 18
n的值為: 19
n的值為: 20
The End.
# 5.登錄實例 totalFrequency = 3 inputFrequency = 0 userName = input("請輸入您的賬號:") password = input("請輸入您的密碼:") while inputFrequency < totalFrequency: if ((userName == "Willard") and (password == "JD584520")): print("賬號密碼正確,登錄成功!") break else: print("賬號或密碼輸入錯誤,登錄失??!") if (totalFrequency - inputFrequency - 1) == 0: break print("請重新登錄!您還有%d次輸入賬號密碼的機(jī)會!"%(totalFrequency - inputFrequency - 1)) print("----------------------------------------") inputFrequency += 1 userName = input("請重新輸入您的賬號:") password = input("請重新輸入您的密碼:")
# 結(jié)果輸出:
# 輸出1:
請輸入您的賬號:Willard
請輸入您的密碼:JD584520
賬號密碼正確,登錄成功!
---------------------------# 輸出2:
請輸入您的賬號:Willard
請輸入您的密碼:jd584520
賬號或密碼輸入錯誤,登錄失?。?br/>請重新登錄!您還有2次輸入賬號密碼的機(jī)會!
----------------------------------------
請重新輸入您的賬號:Willard
請重新輸入您的密碼:JD584520
賬號密碼正確,登錄成功!--------------------------
# 輸出3:
請輸入您的賬號:willard
請輸入您的密碼:JD584520
賬號或密碼輸入錯誤,登錄失??!
請重新登錄!您還有2次輸入賬號密碼的機(jī)會!
----------------------------------------
請重新輸入您的賬號:Willard
請重新輸入您的密碼:jd584520
賬號或密碼輸入錯誤,登錄失?。?br/>請重新登錄!您還有1次輸入賬號密碼的機(jī)會!
----------------------------------------
請重新輸入您的賬號:willard
請重新輸入您的密碼:jd584520
賬號或密碼輸入錯誤,登錄失敗!
# dict:字典,使用鍵-值對(key-value)存儲; # 實例: studentScore = {"Willard":{"Math":100,"Chinese":98,"Eng":90}, "ChenJD":{"Math":99,"Chinese":100,"Eng":98}, "ChenBao":{"Math":100,"Chinese":99,"Eng":96}} print("Willard的成績是:",studentScore["Willard"]) print("ChenJD的成績是:",studentScore["ChenJD"]) print("ChenBao的成績是:",studentScore["ChenBao"]) print("---------------------------------------------") # 修改元素的值 print("Willard原來的成績是:",studentScore["Willard"]) studentScore["Willard"] = {"Math":100,"Chinese":100,"Eng":100} print("修改后Willard的成績是:",studentScore["Willard"]) print("---------------------------------------------") # 判斷key是否存在 # 1.通過in判斷key是否存在 print("判斷是否存在'ChenXiaoBao'這個key.\n") if "ChenXiaoBao" in studentScore: print("存在'ChenXiaoBao'這個key.") else: print("不存在'ChenXiaoBao'這個key.") print("---------------------------------------------") # 2.通過get()方法,如果key不存在,返回None,或指定的value print(studentScore.get("Willard")) print(studentScore.get("Willard"),-1) print("---------------------------------------------") # 刪除一個key,使用pop(key) print("刪除前的字典:\n",studentScore,"\n") studentScore.pop("ChenBao") print("刪除后的字典:",studentScore) # Tips: # 字典的key必須是不可變對象,如:字符串、整數(shù)等,list是可變的;
# 結(jié)果輸出:
Willard的成績是: {'Math': 100, 'Chinese': 98, 'Eng': 90}
ChenJD的成績是: {'Math': 99, 'Chinese': 100, 'Eng': 98}
ChenBao的成績是: {'Math': 100, 'Chinese': 99, 'Eng': 96}
---------------------------------------------
Willard原來的成績是: {'Math': 100, 'Chinese': 98, 'Eng': 90}
修改后Willard的成績是: {'Math': 100, 'Chinese': 100, 'Eng': 100}
---------------------------------------------
判斷是否存在'ChenXiaoBao'這個key.不存在'ChenXiaoBao'這個key.
---------------------------------------------
{'Math': 100, 'Chinese': 100, 'Eng': 100}
{'Math': 100, 'Chinese': 100, 'Eng': 100} -1
---------------------------------------------
刪除前的字典:
{'Willard': {'Math': 100, 'Chinese': 100, 'Eng': 100}, 'ChenJD': {'Math': 99, 'Chinese': 100, 'Eng': 98}, 'ChenBao': {'Math': 100, 'Chinese': 99, 'Eng': 96}}刪除后的字典: {'Willard': {'Math': 100, 'Chinese': 100, 'Eng': 100}, 'ChenJD': {'Math': 99, 'Chinese': 100, 'Eng': 98}}
# 集合:set;是一組key的集合,但不存儲value,且key不能重復(fù),具有唯一性; # 1.創(chuàng)建一個set,提供一個list作為輸入集合 setEg = set([1,2,3]) print("集合setEg的內(nèi)容:",setEg) print("------------------------------") # 2.集合的元素唯一性 setEg2 = set([1,1,1,2,3,4,5,3,2]) print("集合setEg2的內(nèi)容:",setEg2) print("------------------------------") # 3.添加元素 setEg = set([1,2,3]) print("添加元素前集合的內(nèi)容:",setEg) setEg.add(5) print("添加元素后集合的內(nèi)容:",setEg) print("------------------------------") # 4.刪除元素 setEg = set([1,2,3]) print("刪除元素前集合的內(nèi)容:",setEg) setEg.remove(1) print("刪除元素后集合的內(nèi)容:",setEg) print("------------------------------") # 5.交集、并集 setOne = set([1,2,3,4,5]) setTwo = set([1,2,4,6]) print("setOne集合的內(nèi)容:",setOne) print("setTwo集合的內(nèi)容:",setTwo) print("setOne和setTwo的交集:",(setOne & setTwo)) print("setOne和setTwo的并集:",(setOne | setTwo))
# 結(jié)果輸出:
集合setEg的內(nèi)容: {1, 2, 3}
------------------------------
集合setEg2的內(nèi)容: {1, 2, 3, 4, 5}
------------------------------
添加元素前集合的內(nèi)容: {1, 2, 3}
添加元素后集合的內(nèi)容: {1, 2, 3, 5}
------------------------------
刪除元素前集合的內(nèi)容: {1, 2, 3}
刪除元素后集合的內(nèi)容: {2, 3}
------------------------------
setOne集合的內(nèi)容: {1, 2, 3, 4, 5}
setTwo集合的內(nèi)容: {1, 2, 4, 6}
setOne和setTwo的交集: {1, 2, 4}
setOne和setTwo的并集: {1, 2, 3, 4, 5, 6}
讀到這里,這篇“Python循環(huán)方法是什么”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。