后台小程序开发的全方位指南
728
2022-11-02
29 - python字符串的基本操作
# 通过索引获取字符串中的某个字符s1 = 'hello world'print(s1[0])print(s1[-1])
hd
# 分片print(s1[6:11])print(s1[:6])print(s1[::2])print(s1[::-1])
worldhello hlowrddlrow olleh
# 乘法print(s1 * 2)
hello worldhello world
print('b' in s1)print('b' not in s1)
FalseTrue
print(len(s1))print(min(s1))print(max(s1))
11 w
a = [1, 2, 3, 6, 7]print(2 in a)print(2 not in a)
TrueFalse
print(max(a))print(min(a))
71
print(2 * a)
[1, 2, 3, 6, 7, 1, 2, 3, 6, 7]
a[0] = 20# s1[0] = 'a'
30 - 字符串的format方法
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~