python迴圈學習
python中的for迴圈比Java中的更加簡練有點類似於Scala基本語法如下:
cities = ["beijing", "shanghai", "tianjin"]
for city in cities:
print(city.title())
while迴圈基本一樣,基本語法如下:
i = 0
while i < 9:
print(i)
i += 1
迴圈跳出包括關鍵字break,continue其中break直接結束跳出迴圈,continue跳過本次迭代進入下次迭代直至迴圈完成;
測試demo如下:
nums = rang(8) for num in nums: if num % 2 == 0: print(num) break for num in nums: if num % 2 ==0: print(num) continue
可以想一下輸出結果;
相關推薦
python迴圈學習
python中的for迴圈比Java中的更加簡練有點類似於Scala基本語法如下: cities = ["beijing", "shanghai", "tianjin"] for city in cities: print(city.title()) while迴圈基本一樣,基本語法
Python基礎學習四:for迴圈,函式,迭代器
12、for迴圈 """ for 變數 in 序列 執行的程式碼塊 """ list01 = ['joe', 'susan', 'jack' ,'Tom'] # 遍歷列表 for i in list01: print(i) pass空操作,無任何意義, pas
Python基礎學習三:if else迴圈巢狀
⑩ if...else...巢狀 """ if elif 巢狀 """ x = int(input('請輸入第一個數')) y = int(input('請輸入第二個數')) z = int(input('請輸入第三個數')) # 先比較x y
Python入門學習筆記————04(while迴圈,函式)
while 迴圈 一個迴圈語句 某條件成立時迴圈 不確定具體的迴圈次數,但能夠知道就具體的迴圈條件就用while 語法 while 條件表示式: 語句塊 while ... ellse... wh
python基礎學習筆記——迴圈語句(while、for)
while 迴圈 流程控制語句 while 1、基本迴圈 while 條件: # 迴圈體 # 如果條件為真,那麼迴圈則執行 # 如果條件為假,那麼迴圈不執行 2、break break 用於退出當層迴圈
異想-天開 python---while、for、if-else 迴圈學習
for迴圈: for i in range(10): # i迴圈10次 print('------',i) for j in range(10): print(j) if j > 2 : break #跳出迴圈體while迴圈: ag
Python新手學習基礎之迴圈結構——For語句
for語句 在Python裡,迴圈語句除了while語句,還有for語句。 通常我們用for迴圈來遍歷(按約定的順序,對每個點進行訪問,且只做一次訪問)有序列的內容,比如列表和字串(列表內容我們會在之後的章節詳細介紹),for遍歷迴圈的程式碼語法如下:for x in
【python系統學習11】迴圈語句裡的F4
迴圈語句裡的F4 深入瞭解下四個新語句,分別是:continue、break、pass、else以及他們搭配for、while迴圈等語句時,所產生的化學反應。 else 由於continue、break都會和else有一定的規則,所以先來說else。 在python中,else不但可以和if配合使用,它還能跟
Python基礎學習
python 基礎 第一個程序:Hello Worldprint("Hello World!")本文出自 “學海無涯” 博客,請務必保留此出處http://tofgetu.blog.51cto.com/12856240/1922108Python基礎學習
python完全學習筆記
tee lsp 般的 posix adding efi 屬性 路徑 block dir(__builtins__) help(input) ‘let\‘s go‘ #轉義字符 \ r‘c:\now‘ #字符串前加r 自動轉義 str= ‘‘‘
Python基礎學習之標識符
數字 其他 符號 lin port 分用 xxx rom code 1、合法的Python標識符 Python標識符字符串規則和其他大部分用C編寫的高級語言相似: 第一個字符必須是字母或下劃線(_) 剩下的字符可以是字母和數字或下滑線 大小寫敏感 標識符不能以數
Python基礎學習(四)
python 函數 集合 Python 集合: set 顧明思義,就是個集合,集合的元素是唯一的,無序的。一個{ }裏面放一些元素就構成了一個集合,set裏面可以是多種數據類型(但不能是列表,集合,字典,可以是元組) 它可以對列表裏面的重復元素進行去重list1 = [1,2,3,23
python基礎學習日誌day5---random模塊
+= python pre 隨機生成 int 1.0 clas Coding for python使用random生成隨機數 下面是主要函數random.random()用於生成一個0到1的隨機符點數: 0 <= n < 1.0random.randint(a,
python基礎學習日誌day5---os模塊
隱藏 dirname 運維 isa 工作 打印 rmdir 空值 如何 python os模塊提供對操作系統進行調用的接口。 # -*- coding:utf-8 -*-__author__ = ‘shisanjun‘import osprint(os.getcwd())#
python基礎學習日誌day5---logging模塊
取值 ive expect wid order out 程序 正常的 pen 很多程序都有記錄日誌的需求,並且日誌中包含的信息即有正常的程序訪問日誌,還可能有錯誤、警告等信息輸出,python的logging模塊提供了標準的日誌接口,你可以通過它存儲各種格式的日誌,logg
Python Tkinter學習(1)——第一個Tkinter程序
這一 tkinter courier 訪問 elf creat int 學習 開始 註:本文可轉載,轉載請註明出處:http://www.cnblogs.com/collectionne/p/6885066.html。 Tkinter介紹 Python支持多個圖形庫
python基礎學習筆記
好的 留下 path false 找到 __name__ ems 單詞 ups 1 #!/usr/bin/env python 2 #coding=utf-8 3 4 def login(username): 5 if username==‘
python基礎學習日誌day6-類的繼承
del pytho roo ict sel self eache 但是 n) 繼承:承創建的新類稱為“子類”或“派生類”,被繼承的類稱為“基類”、“父類. 繼承的過程,就是從一般到特殊的過程.要實現繼承,可以通過“繼承”(Inheritance)和“組合”(Co
python基礎學習日誌day6-類的經典類vs新式類
blog 學習 obj 父類 day6 廣度 auth () Coding 經典類VS新式類區別1)寫法新式類class Person(object):#new style 經典類class Persion: #classical style 2)調用父類 新式寫法用s
python基礎學習日誌day5--re模塊
基礎學習 多行 nor 反斜杠 ... re.search () bbc 匹配 常用正則表達式符號 ‘.‘ 默認匹配除\n之外的任意一個字符,若指定flag DOTALL,則匹配任意字符,包括換行 ‘^‘ 匹配字符開頭,若指定flags MULTILINE