欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

python 部分字符串

錢多多2年前8瀏覽0評論

Python是一種流行的編程語言,可用于從文本數據中提取字符串。這里介紹一些常用的字符串操作方法。

# 創建字符串
text = "Hello, World!"
# 訪問字符串中的字符
print(text[0]) # H
# 訪問字符串中的子串
print(text[0:5]) # Hello
# 獲取字符串長度
print(len(text)) # 13
# 查找子字符串
print(text.find("World")) # 7
print(text.find("Python")) # -1
# 替換子字符串
new_text = text.replace("World", "Python")
print(new_text) # Hello, Python!
# 拆分字符串
words = text.split(",")
print(words) # ['Hello', ' World!']
# 連接字符串
new_text = "-".join(words)
print(new_text) # Hello- World!
# 轉換大小寫
print(text.upper()) # HELLO, WORLD!
print(text.lower()) # hello, world!

以上是Python中一些常用的字符串操作方法。通過這些方法,我們可以輕松地實現對字符串的處理,并從文本數據中提取所需的信息。