前言
前面我们学习了 Python学习篇(一) 新建Python文件 Python学习篇(二) Python中的变量和数据类型 Python学习篇(三) Python中的运算符 Python学习篇(四) Python中的分支结构 Python学习篇(五) Python中的循环 Python学习篇(六) Python中的列表 Python学习篇(七) Python中的字典 Python学习篇(八) Python中的元组 Python学习篇(九) Python中的集合 今天我们继续学习Python中相当重要的字符串。
一、字符串的创建和驻留机制
只在编译时驻留,这里的c=’’.join([‘ab’,’c’]),是在运行时产生的 -6并不在-5到256之间 Python有一个类,强制指向同一个地址 为什么不用pycharm,因为pycharm对字符串做了优化处理
二、字符串的常用操作
2.1字符串的查询操作
2.2字符串的大小写转换
s='Hello,World'
print(s.upper())
print(s.lower())
print(s.swapcase())
print(s.capitalize())
print(s.title())
2.3字符串内容的对齐
s='hello,python'
print(s.center(20,'*'))
print(s.ljust(20,'*'))
print(s.rjust(20,'*'))
print(s.zfill(20))
2.4 字符串的劈分
s='hello world python'
print(s.split())
s1='hello|world|python'
print(s1.split())
print(s1.split('|'))
print(s1.split(sep='|',maxsplit=1))
print(s1.rsplit())
print(s1.rsplit('|'))
print(s1.rsplit(sep='|',maxsplit=1))
2.5 判断字符串的方法
s='hello,python'
print('1',s.isidentifier())
print('2',s.isspace())
print('3',s.isalpha())
print('4',s.isdecimal())
print('5',s.isnumeric())
print('6',s.isalnum())
2.6 字符串操作的其他方法
s='hello,world'
print(s.replace('hello','python'))
s1='hello,python,python,python'
print(s1.replace('python','java',2))
lst=['hello','java','python']
print('|'.join(lst))
t=('hello','java','python')
print(''.join(t))
print('*'.join('python'))
三、字符串的比较操作
print('apple'>'app')
print('apple'>'banana')
print(ord('a'),ord('b'))
print(chr(97),chr(98))
'''==和is 的区别
==比较的是值,is比较的是ID'''
a=b='python'
c='python'
print(a==b)
print(b==c)
print(a is b)
print(b is c)
四、字符串的切片
s='hello,python'
print(s[:5])
print(s[6:])
print(s[:5]+'!'+s[6:])
print(s[1:5:1])
print(s[::2])
'''切片操作会产生新的对象'''
'''完整写法[start:end:step]'''
五、字符串的格式化
name='张三'
age=20
print('我叫%s,今年%d岁'% (name,age))
print('我的名字叫{0},今年{1}岁了'.format(name,age))
print(f'我叫{name},今年{age}岁了')
5.1 数据的宽度和精度的表示方法
print('%10d'% 99)
print('%.3f'% 3.1415926)
print('%10.3f'% 3.1415926)
'''其他表示方法'''
print('{0:.3}'.format(3.1415926))
print('{0:.3f}'.format(3.1415926))
print('{0:10.3f}'.format(3.1415926))
六、字符串的编码转换
s='天涯共此时'
print(s.encode(encoding='GBK'))
print(s.encode(encoding='UTF-8'))
byte=s.encode(encoding='GBK')
print(byte.decode(encoding='GBK'))
总结
字符串还是非常重要的,大家需要多多练习,加深记忆。
|