python基礎3
字串駐留
符合標識規則的字串(下劃線、字母和數字)
>>> a="abc_33"
>>> b = "abc_33"
>>> a is b
True
>>> c = "#sdf"
>>> d = "#sdf"
>>> c is d
False
成員操作符
in 和 not in
>>> a = "abcdeef"
>>> b = "abc"
>>> b in a
True
>>> c = "sdf"
>>> c not in a
True
>>>
常用查詢方法
>>> a = "我是ljl,今年18歲了,我再北京神恩嗯額額呢"
>>> len(a)
23
>>> a.startswith("我是")
True
>>> a.startswith("我是ljl")
True
>>> a.rfind("18")
8
>>> a.count("我")
2
大小寫轉化
'sxt '
>>> "*sxt *".rstrip("*")
'*sxt '
>>> a.capitalize()
'我是ljl,今年18歲了,我再北京神恩嗯額額呢'
>>> a = "liang jun llllll"
>>> a.capitalize()
'Liang jun llllll'
>>> a.title()
'Liang Jun Llllll'
>>> a.upper()
'LIANG JUN LLLLLL'
>>> a.lower()
'liang jun llllll'
>>> a.swapcase()
'LIANG JUN LLLLLL'
格式排版
>>> a = "SXT"
>>> a.center(10,"*")
'***SXT****'
>>> a.ljust(10,"*")
'SXT*******'
>>> a.rjust(10,"*")
'*******SXT'
其他方法
字串格式化
{索引}/{引數名}
>>> a = "名字是{0},年齡是:{1}"
>>> b = a.format("俊朗",'18')
>>> b
'名字是俊朗,年齡是:18'
>>> c = "名字是{name},年齡是:{age}"
>>> d = c.format(age=19,name='ljl')
>>> d
'名字是ljl,年齡是:19'
填充和對齊
>>> "我是{0},我喜歡數學{1:*^8}".format("高高","666")
'我是高高,我喜歡數學**666***'
數字格式化
>>> a = "名字是{0},年齡是:{1:.2f}"
>>> a.format('liang',3888.234345)
'名字是liang,年齡是:3888.23'
相關文章
- Python基礎:語法基礎(3)Python
- Python 基礎 3 - 元組Python
- Python基礎之四:Python3 基礎資料型別Python資料型別
- Python入門基礎(3 下)Python
- Python基礎學習3——列表Python
- Python3 基礎語法Python
- python urllib 基礎之 3Python
- 面向Python,物件導向(基礎3)Python物件
- python基礎 (3)if 和 while的使用PythonWhile
- Python基礎學習3:函式Python函式
- Python 3基礎教程16-類Python
- Python函式基礎(day3)Python函式
- Python3基礎18——類與物件Python物件
- Python 必備面試基礎知識-3Python面試
- 【python3基礎】相對路徑,‘/’,‘./’,‘../’Python
- Python3基礎篇--print的使用Python
- Python企業面試題3 —— 基礎篇Python面試題
- Python基礎篇-Python基礎01Python
- python基礎中的基礎Python
- Python3 基礎資料型別概述Python資料型別
- Python3 (基礎練習)猴子吃桃Python
- 用Python學習統計學基礎-3Python
- Python基礎筆記01-Python基礎Python筆記
- Docker 基礎 - 3Docker
- flex基礎(3)Flex
- python 基礎Python
- Python 基礎 (-)Python
- python基礎①Python
- Python基礎Python
- 基礎的python知識3(布林表示式)Python
- Python3基礎——運算子、資料型別Python資料型別
- Python 3 學習筆記之——基礎語法Python筆記
- python菜鳥教程學習3:基礎語法Python
- 小白學python系列-(3)基礎數量型別Python型別
- Opencv3 python學習2——視訊基礎OpenCVPython
- 大資料學習記錄,Python基礎(3)大資料Python
- Python基礎面試題30問!Python基礎教程Python面試題
- Vue3---基礎Vue