python如何转换字符

原创
admin 1天前 阅读数 8 #Python

Python中的字符转换

Python提供了多种方法来转换字符,以下是一些常用的方法:

1、转换为字符串:使用str()函数将其他数据类型转换为字符串,将整数转换为字符串:

num = 123
str_num = str(num)
print(str_num)  # 输出:'123'

2、转换为小写:使用lower()函数将字符串转换为小写。

str_upper = "HELLO"
str_lower = str_upper.lower()
print(str_lower)  # 输出:'hello'

3、转换为大写:使用upper()函数将字符串转换为大写。

str_lower = "hello"
str_upper = str_lower.upper()
print(str_upper)  # 输出:'HELLO'

4、去除空格:使用strip()函数去除字符串前后的空格。

str_space = "   hello   "
str_no_space = str_space.strip()
print(str_no_space)  # 输出:'hello'

5、替换字符:使用replace()函数替换字符串中的字符,将字符串中的空格替换为下划线:

str_space = "hello world"
str_replaced = str_space.replace(" ", "_")
print(str_replaced)  # 输出:'hello_world'

6、分割字符串:使用split()函数将字符串分割成多个部分,将字符串按空格分割成单词:

str_split = "hello world"
words = str_split.split(" ")
print(words)  # 输出:['hello', 'world']

7、合并字符串:使用join()函数将多个字符串合并成一个,将单词列表合并成句子:

words = ['hello', 'world']
str_merged = " ".join(words)
print(str_merged)  # 输出:'hello world'

Python中常用的字符转换方法,使用这些方法可以方便地进行字符处理。

热门