04_python——元組(tuple)、字串 、 bytes bytearray
1.元組:
類似於列表的一個變形
一個有序的元素組成的集合
使用小括號( ) 表示
元組是不可變物件
2.定義
3.
4.
5.元組其它操作:
元組是隻讀的,所以增、改、刪方法都沒有
注意: 例如:(1,2,[5,6],3) 中引用的列表是可以被改動的
6.命名元組namedtuple(建立一個類)
(語法)namedtuple(typename, field_names, verbose=False, rename=False)
命名元組,返回一個元組的子類,並定義了欄位
field_names可以是空白符或逗號分割的欄位的字串,可以是欄位的列表
例:
from collections import namedtuple #從collections中載入namedtuple模組
Point = namedtuple(‘p’,[‘x’,‘y’]) # Point為返回的類
字串
1.
2.定義字串:
r" " 的作用是去除轉義字元.
3.
4.
5.join:定義分隔符
6.字串 連線*
例: a=‘bc’
a*2
輸出:‘bcbc’
7.split返回的是列表
8.rsplit:從反方向切割(但是輸出順序不變),用法同split
9.splitlines:
10.partition:
**11.rpartition:**用發與partition相同,但是是從後往前分割,輸出也是從後往前
12.字串大小寫:
13.
14.replace(替換)
**15.strip **
16.find(查詢字串)
17.index, 類似於find,但是未找到時丟擲異常ValueError,最好不要用,代價比find大
18.count
19.
20.(瞭解)
21.printf style風格(c語言風格)字串格式化輸出:
22.format函式格式字串語法——Python鼓勵使用:
用法
bytes
1.
2.python的淺拷貝,影子拷貝和深拷貝
3.
4.
bytearray
1.
2.
3.切片
舉例:
相關文章
- Swift元組(Tuple)Swift
- Python tuple(元組)Python
- Python元組tuplePython
- python--元組tuplePython
- Python 建立元組tuplePython
- python學習:元組tuplePython
- .NET Framework 4.0之Tuple(元組)Framework
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- list和tuple元組的區別
- python list(列表)和tuple(元組)Python
- Python資料型別(元組tuple)Python資料型別
- python之tuple元組,基礎篇Python
- python資料結構元組tuplePython資料結構
- Python內建資料結構--bytes、bytearrayPython資料結構
- 元組和字串字串
- python列表(list)和元組(tuple)詳解Python
- python基礎之列表list元組tuplePython
- Python的資料結構(四)bytes和bytearrayPython資料結構
- Python - 基礎資料型別 tuple 元組Python資料型別
- Python 選列表 list 還是元組 tuple 的思考Python
- Python零基礎學習筆記(二十)——tuple元組Python筆記
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- Python中元組tuple的作用以及tuple和list的轉換Python
- python3 將bytes轉為字串Python字串
- 深入理解 Python 虛擬機器:元組(tuple)的實現原理及原始碼剖析Python虛擬機原始碼
- 生成隨機字串應該用random_bytes還是openssl_random_pseudo_bytes隨機字串random
- PostgreSQL Tuple在記憶體中組織形式SQL記憶體
- scala常用操作-Tuple元祖轉換成String字串字串
- 列表、元組、字串是有序序列嗎?Python基礎教程字串Python
- 元組
- Python學習筆記015——序列(位元組陣列 bytearray)Python筆記陣列
- (007)我們一起學Python;元組和字串Python字串
- JavaScript組合字串JavaScript字串
- 字串 全組合字串
- Python 元組Python
- 20201118 5.2元組 5.3字串字串
- bit,bytes
- Python中列表、元組、字典、集合與字串,相關函式,持續更新中……Python字串函式