Python迴圈引數的使用

2021-08-10 05:41:57 字數 694 閱讀 4105

咱們大家都知道python是c語言寫的,所以呢有很多引數的使用方法也都是和c語言相差不多的

今天給大家分享一些關於python迴圈的方法以及引數

再c語言中咱麼使用的迴圈是forwhile 迴圈,同樣python也是如此只是使用發放有些不同

首先介紹for迴圈的使用

>>> man = ['張三','李四','王麻子','三']#定義乙個陣列

>>> for i in man:#使用for迴圈陣列中的內容

print (i , len(i)) #len是列印出i的長度

張三 2

李四 2

王麻子 3

三 1

同樣for迴圈也是有break和continue,用法和c語言是一樣的

while迴圈:

>>> t =0#首先需要定義乙個t

>>> while t<10: #新增迴圈條件,當while條件為true時便進入迴圈

t+=1#每迴圈一次都給t+1 這裡的t+=1 和t = t+1是一樣的

print (t)

123

4567

8910

同樣while迴圈中也是可以使用break和continue的

python使用迴圈結構 python迴圈結構

python迴圈結構 1.1 使用while python 中沒有 do while 迴圈 while else 在條件語句為 false 時執行 else 的語句塊 list iwhile ilen list print listii while可以使用else語句 list iwhile ile...

python 中for迴圈的使用

學過c原因的同學,在遍歷乙個陣列的值,最常用的方法就是使用for迴圈 char message 4 for int i 0 i 4 i for auto ele message c 11之後可以這樣遍歷 python中 for迴圈,只有for in這種方式 message c c python ru...

Python 2 迴圈的使用

一 while迴圈和for迴圈 例 依次列印出學生的姓名 while迴圈 students mike jack mary pat will lisa idx 0 while idx二 break和countiue使用方法 break語句 中止迴圈 name age a 10 b 15 c 2 d 2...