Python---字符串合并与拆分

Python从入门到高手(内部资源-配学习资料)_哔哩哔哩_bilibili

# join():以指定字符串作为分隔符,将seq中所有元素合并为一个新的字符串
new_str = '-'.join('abc')
print(new_str)

# python 列表 list=['a','v','o','9'] 数组
list1 = ['a', 'v', 'o', '9']
result = ''.join(list1)
print(result)
result = ' *'.join(list1)
print(result)

# lstrip() rstrip() strip()
s = '    hello    '
s = s.lstrip()  # 去除字符串左侧空格
print(s)

# split()分割字符串
s = 'hello world hello kitty'
result = s.split(' ')
print(result)

# split()分割字符串
s = 'hello world hello kitty'
result = s.split(' ', 2)  # 表示按照空格作为分隔符,分割字符串两次
print(result)

n = s.count(" ")  # count(args) 求字符串中指定args的个数
print('个数:', n)

s = 'sdfasdfadgawafa'
print("s的个数:", s.count("s"))  # 统计s的个数

你可能感兴趣的:(python,python)