Python學習筆記(三)

2021-07-02 15:30:44 字數 731 閱讀 3215

將*.py檔案變為可執行檔案的方法:

#!/usr/bin/env python

條件判斷:

if age >= 18:

print 'adult'

else:

print 'teenager'

具有相同縮排的**被視為**塊。 if 語句後接表示式,然後用:表示**塊開始。 

elif 意思就是 else if:

if age >= 18:

print 'adult'

elif age >= 6:

print 'teenager'

elif age >= 3:

print 'kid'

else:

print 'baby'

迴圈:

1.for迴圈:

l = ['adam', 'lisa', 'bart']

for name in l:

print name

2.while迴圈:

n = 10

x = 0

while x < n:

print x

x = x + 1

continue和break的用法與c中相同。

python學習筆記(三)

python的序列 列表,元組,字串都是列表,列表的主要特點是索引和切片操作 序列的基本操作 1.len 求序列的長度 2.連線兩個序列 3.重複序列元素 4.in判斷序列是否在元組中 5.max 返回最大值 6.min 返回最小值 7.cmp tup1,tup2 比較兩個序列的值 元組 元組和字串...

python學習筆記三

一 輸出 print的幾種用法 print hello world hello world中間有空格 print hello wolrd helloworld 中間沒有空格 print hello wolrd helloworld 中間沒有空格 print hello world hello wor...

python學習筆記(三)

list也可以直接做加法 a 1,2 a 3 a 1,2,3 lambda用來定義匿名函式 lambda x x 2.0 lambda x x 2.0 平方是用 student torture不理解 for可以各種巢狀 ppl alice bob carol doug excited ppl e f...