Python 字符串操作:split、trim 和 strip 的区别
split、trim、strip都是字符串操作,但是它们的作用不同。
- split
split()是Python中的字符串方法,用于将字符串拆分成一组子字符串。它接受一个分隔符作为参数,默认为空格,将字符串分割成一个列表。例如:
s = 'hello world'
s_list = s.split()
print(s_list) # 输出:['hello', 'world']
- trim
trim()不是Python中的字符串方法,它是一种去除字符串两端空格的操作。在Python中,可以使用strip方法来实现。例如:
s = ' hello world '
s = s.strip()
print(s) # 输出:'hello world'
- strip
strip()是Python中的字符串方法,用于去除字符串两端的空格或指定的字符。例如:
s = ' hello world '
s = s.strip()
print(s) # 输出:'hello world'
s = '***hello world***'
s = s.strip('*')
print(s) # 输出:'hello world'
总结:
- split()是将字符串拆分成一组子字符串;
- trim()是去除字符串两端的空格,Python中使用strip()方法实现;
- strip()是去除字符串两端的空格或指定的字符。
原文地址: https://www.cveoy.top/t/topic/nRtP 著作权归作者所有。请勿转载和采集!