python的序列
列表,元組,字串都是列表,列表的主要特點是索引和切片操作
①序列的基本操作:
1.len() 求序列的長度
2.+ 連線兩個序列
3.*重複序列元素
4.in判斷序列是否在元組中
5.max()返回最大值
6.min()返回最小值
7.cmp(tup1,tup2)比較兩個序列的值
②元組()
元組和字串一樣是不能改變的。python是先在記憶體中儲存變數值後用變數名指向它,值改變時變數的位址也會變。
元組的定義:空元組 empty=()
單元素元組 tup1=("helllo",)
一般元組 tup2=('hello','world','haha')
③列表 list
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...
Python學習筆記(三)
將 py檔案變為可執行檔案的方法 usr bin env python 條件判斷 if age 18 print adult else print teenager 具有相同縮排的 被視為 塊。if 語句後接表示式,然後用 表示 塊開始。elif 意思就是 else if if age 18 pri...