首页 > 代码库 > python_day02 学习知识点
python_day02 学习知识点
当天要学习知识点:
1、基本数据类型
2、字符编码
4、文件处理
1、基本数据类型
字符串str:
str=‘hello nice to meet you Name:{name},Age:{age} ‘ print(str[0]) #取值 # 字符串str的常用操作 print(str[1:9:2]) #切片 步长为2 print(str.strip()) #去掉字符串前后空格 print(str.split()) #分割 可指定分割符为*或| print(len(str)) #长度 # 字符串str的其他操作 print(str.upper()) #大写 print(str.lower()) #小写 print(str.center(60,‘*‘)) #指定字符个数,字符串居中,其他*补全 print(str.count(‘o‘)) #统计指定字符的个数,空格也算是一个字符 print(str.find(‘o‘)) #列出‘o‘所在位置信息,不存在输出为-1 print(str.index(‘o‘)) #列出‘o‘所在位置信息,不存在则报错 print(str.format(name=‘liwj‘,age=‘17‘)) #格式化字符串,替代{}中的内容 print(str.replace(‘o‘,‘O‘,2)) #替换指定字符为其他字符,可指定替换次数 print(str.startswith(‘h‘)) #判断字符串开头和结尾信息 print(str.endswith(‘o‘)) print(str.isdigit()) #判断字符串中字符是否是为数字
结果信息:
h
el i
hello nice to meet you Name:{name},Age:{age}
[‘hello‘, ‘nice‘, ‘to‘, ‘meet‘, ‘you‘, ‘Name:{name},Age:{age}‘]
48
HELLO NICE TO MEET YOU NAME:{NAME},AGE:{AGE}
hello nice to meet you name:{name},age:{age}
******hello nice to meet you Name:{name},Age:{age} ******
3
4
4
hello nice to meet you Name:liwj,Age:17
hellO nice tO meet you Name:{name},Age:{age}
True
False
False
列表list:
python_day02 学习知识点
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。