真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換,相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

梅河口ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!

1. 將數(shù)據(jù)表中某一個字段全部轉(zhuǎn)換成小寫

# 將數(shù)據(jù)表中某一個字段全部轉(zhuǎn)換成小寫

# 加載數(shù)據(jù)源
import pandas as pd
df_lower = pd.read_excel("D:\Jupyter\data\Python.xlsx",sheet_name = 1)
# 預(yù)覽
df_lower

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

全部轉(zhuǎn)換成小寫

# 全部轉(zhuǎn)換成小寫
df_lower["goods"] = df_lower["goods"].str.lower()
df_lower

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

2. 字符串全部轉(zhuǎn)換成小寫字母

# 字符串全部轉(zhuǎn)換成小寫字母
str_lower = "BMW"
str_lower

# str_lower.lower()

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

str_lower.lower()

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

3. 將數(shù)據(jù)表中某一個字段全部轉(zhuǎn)換成大寫

# 將數(shù)據(jù)表中某一個字段全部轉(zhuǎn)換成大寫
import pandas as pd
df_upper = pd.read_excel("D:\Jupyter\data\Python.xlsx",sheet_name = 1)
df_upper

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

df_upper["goods"] = df_upper["goods"].str.upper()
df_upper

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

4. 字符串全部轉(zhuǎn)換成大寫字母

# 字符串全部轉(zhuǎn)換成大寫字母
str_upper = "abcd"
str_upper

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

str_upper = str_upper.upper()
str_upper

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

5. 只把一句話的開頭單詞的首字母轉(zhuǎn)換成大寫

# 只把一句話的開頭單詞的首字母轉(zhuǎn)換成大寫
df_capitalize1 = "i have a lot of money"
df_capitalize1

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

df_capitalize2 = df_capitalize.capitalize()
df_capitalize2

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

df_capitalize3 = "who ARE YOU"
df_capitalize3

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

df_capitalize4 = df_capitalize3.capitalize()
df_capitalize4

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

6. 標(biāo)題首字母大寫

# 標(biāo)題首字母大寫
str_title = "wo yao zi xue wang"
str_title

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

str_title1 = str_title.title()
str_title1

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

7. 綜合運(yùn)用

x = input("請 輸入字符:")
y = []
for n in x :
    if "a"<= n <= "z":
        y.append(n.upper())
    elif"A" <= n <= "Z" :
        y.append(n.lower())
    else:
        y.append(n)
print("".join(y))

Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換

看完上述內(nèi)容,你們掌握Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


新聞標(biāo)題:Python中怎么實(shí)現(xiàn)大小寫轉(zhuǎn)換
文章分享:http://weahome.cn/article/giospg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部