您的当前位置:首页正文

python字符串常用操作方法(二)

2024-11-30 来源:个人技术集锦

1、split(分割:str—>list)默认空格分割,也可以指定分隔符分割

s1 = '大白 胖子 哈 嘿 吼'
print(s1.split())
s2 = '大 白 胖 子 哈 嘿 吼'
print(s2.split())
s3 = '大白:胖子:哈:嘿:吼'
print(s3.split(':'))
# 如果指定分隔符相邻前后无其他分隔符以外得字符,则输出结果为空
s4 = ':::大白:胖子::::哈:嘿:吼'
print(s4.split(':'))

输出结果如下:

s1 = '大白 胖子 哈 嘿 吼'
print('s1:' + str(s1.split()))
s2 = '大 白 胖 子 哈 嘿 吼'
print('s2:' + str(s2.split()))
s3 = '大白:胖子:哈:嘿:吼'
print('s3:' + str(s3.split(':')))
# 如果指定分隔符相邻前后无其他分隔符以外得字符,则输出结果为空
s4 = ':::大白:胖子::::哈:嘿:吼'
print('s4:' + str(s4.split(':')))

执行结果如下:

2、startswith(以什么开头) endswith(已什么结尾) 返回值为bool值(True 或者 False)

s1 = ' 大 白胖子最帅! '
print(s1.startswith('大白'))
print(s1.startswith('大 白'))
print(s1.startswith(' 大 白'))
print('--------------------')
print(s1.endswith('!'))
print(s1.endswith('! '))
print(s1.endswith('帅! '))

3、format 格式化输出,变量支持复用,{}里面得写的是变量

name = '大白'
age = 18
msg = '我叫{name},今年{age},{name}最帅,永远{age}'.format(name=name, age=age)
print(msg)

执行结果如下:

例子1(20以内,带7得,7得倍数都不输出):
a = 1
while a <= 20:
    if str(a).count('7') >= 1 or a % 7 == 0:
        a += 1
        continue
    else:
        print(a)
        a += 1
例子2(20以内,带7得,7得倍数都不输出):
for i in range(1, 21):
    if str(i).count('7') >= 1 or i % 7 == 0:
        pass
    else:
        print(i)
两个例子一个是for循环一个是while循环,执行结果相同,执行结果如下:

显示全文