欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

Python的字符串怎么表示

這篇文章主要講解了“Python的字符串怎么表示”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Python的字符串怎么表示”吧!

創(chuàng)新互聯(lián)公司主營呂梁網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā)公司,呂梁h5成都微信小程序搭建,呂梁網(wǎng)站營銷推廣歡迎呂梁等地區(qū)企業(yè)咨詢

字符串的表示方式

  • 單引號 " "

  • 雙引號 " "

  • 多引號 """ """"  、 """ """

print("hello world")
print("hello world")
print("""hello world""")

# 輸出結(jié)果
hello world
hello world
hello world

為什么需要單引號,又需要雙引號

因為可以在單引號中包含雙引號,或者在雙引號中包含單引號

# 單雙引號
print("hello "poloyy" world")
print("this is my name "poloyy"")

# 輸出結(jié)果
hello "poloyy" world
this is my name "poloyy"

多行字符串

正常情況下,單引號和雙引號的字符串是不支持直接在符號間換行輸入的,如果有需要可以用多引號哦!

# 多行字符串
print("""
hello
world
""")
print("""
this
is
my
name
poloyy
""")

# 輸出結(jié)果
hello
world

this
is
my
name
poloyy

轉(zhuǎn)義符

在字符前加  就行

常見的有

  • :換行

  • :縮進

  • :回車

栗子

比如在字符串雙引號間還有一個雙引號,就需要用轉(zhuǎn)義符

# 轉(zhuǎn)義符
print("hello "poloyy" world")
print("my name is "poloyy"")

# 輸出結(jié)果
hello "poloyy" world
my name is "poloyy"

假設(shè)  只想當(dāng)普通字符處理呢?

print("反斜杠  是什么")
print("換行符是什么 
")

# 輸出結(jié)果
反斜杠  是什么
換行符是什么

window 路徑的栗子

print("c:
othingtype")
print("c:
othingtype")

# 輸出結(jié)果
c:
othing
c:
type
c:
othingtype

更簡潔的解決方法

用轉(zhuǎn)義符會導(dǎo)致可讀性、維護性變差,Python 提供了一個更好的解決方法:在字符串前加r

print(r"c:
othingtype")

# 輸出結(jié)果
c:
othingtype

字符串運算:下標(biāo)和切片

獲取字符串中某個字符

字符串是一個序列,所以可以通過下標(biāo)來獲取某個字符

# 獲取字符串某個字符
str = "hello world"
print(str[0])
print(str[1])
print(str[6])
print(str[-1])
print(str[-5])

# 輸出結(jié)果
h
e
w
d
l

如果是負(fù)數(shù),那么是倒數(shù),比如 -1 就是倒數(shù)第一個元素,-5 就是倒數(shù)第五個元素

獲取字符串中一段字符

Python 中,可以直接通過切片的方式取一段字符

切片的語法格式

str[start : end : step]
  • start:閉區(qū)間,包含該下標(biāo)的字符,第一個字符是 0

  • end:開區(qū)間,不包含該下標(biāo)的字符

  • step:步長

栗子

print("hello world"[:] ", "hello world"[:])  # 取全部字符
print("hello world"[0:] ", "hello world"[0:])  # 取全部字符
print("hello world"[6:] ", "hello world"[6:])  # 取第 7 個字符到最后一個字符
print("hello world"[-5:] ", "hello world"[-5:])  # 取倒數(shù)第 5 個字符到最后一個字符

print("hello world"[0:5] ", "hello world"[0:5])  # 取第 1 個字符到第 5 個字符
print("hello world"[0:-5] ", "hello world"[0:-5])  # 取第 1 個字符直到倒數(shù)第 6 個字符
print("hello world"[6:10] ", "hello world"[6:10])  # 取第 7 個字符到第 10 個字符
print("hello world"[6:-1] ", "hello world"[6:-1])  # 取第 7 個字符到倒數(shù)第 2 個字符
print("hello world"[-5:-1] ", "hello world"[-5:-1])  # 取倒數(shù)第 5 個字符到倒數(shù)第 2 個字符

print("hello world"[::-1] ", "hello world"[::-1])  # 倒序取所有字符
print("hello world"[::2] ", "hello world"[::2])  # 步長=2,每兩個字符取一次
print("hello world"[1:7:2] ", "hello world"[1:7:2])  # 步長=2,取第 2 個字符到第 7 個字符,每兩個字符取一次

# 輸出結(jié)果
hello world"[:] hello world
hello world"[0:] hello world
hello world"[6:] world
hello world"[-5:] world


hello world"[0:5] hello
hello world"[0:-5] hello
hello world"[6:10] worl
hello world"[6:-1] worl
hello world"[-5:-1] worl


hello world"[::-1] dlrow olleh
hello world"[::2] hlowrd
hello world"[1:7:2] el

感謝各位的閱讀,以上就是“Python的字符串怎么表示”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Python的字符串怎么表示這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

網(wǎng)站題目:Python的字符串怎么表示
文章源于:http://aaarwkj.com/article46/gjiphg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)營銷型網(wǎng)站建設(shè)外貿(mào)網(wǎng)站建設(shè)、服務(wù)器托管、外貿(mào)建站、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
欧美亚洲另类在线日韩国产| 亚洲精品中文字幕一二三| 国产精品高清国产三级av| 国产91高清在线观看| 亚洲国产剧情中文字幕| 天天操夜夜操狠狠操91| 久热伊人精品国产中文 | av男人的天堂一区二区| 偷窥偷拍原味一区二区三区| 激情内射日本一区二区三区| 免费成人自拍偷拍视频| 亚洲成人不卡一区二区三区| 草莓午夜视频在线观看| 色中文字幕人妻诱惑制服| 免费在线免费观看av| av天堂久久这里只有精品美国 | 懂色av中文字幕一区| 青青草成人免费在线公开视频| 蜜臀av一区二区在线观看| 国产精品主播自拍视频| 欧美日韩国产综合一区二区| 国产一区二区在线粉嫩| 久久不卡高清免费av| 国产三级av高清一区二区| 在线免费观看欧美黄片| 午在线亚洲男人午在线| 中文字幕久久亚洲一区| 国产精品欧美日韩精品| 国产伦理免费精品中文字幕| 一区二区三区在线观看日本视频 | 欧美黄片在线免费观看视频| 国产国产乱老熟视频网站| 婷婷激情六月中文字幕| 91深夜在线免费观看| 后入式动漫在线观看| 91女厕偷拍女厕偷拍| 夫妻性生活视频在线免费看| 亚洲福利视频在线观看免费| 18禁在线免费观看网站| 溪乱毛片一区二区三区| 日韩国产欧美亚洲一区|