在Python中,有多種方法可以刪除字符串中的字符。以下是其中幾種常用的方法:
str[1:]
。str = "Hello World"
new_str = str[1:]
print(new_str) # 輸出 "ello World"
str = "Hello World"
new_str = str.replace("H", "")
print(new_str) # 輸出 "ello World"
import re
str = "Hello World"
new_str = re.sub("H", "", str)
print(new_str) # 輸出 "ello World"
這些方法都可以用于刪除字符串中的字符。具體使用哪種方法取決于你的需求和個人偏好。