08python语法入门--基本数据类型及内置方法
-
定义
-
类型转换
-
使用
字符串
-
定义
-
类型转换
-
使用
-
优先掌握的操作
-
需要掌握的操作
-
了解操作
-
列表
-
定义
-
类型转化
-
使用
-
优先掌握的操作
-
需要掌握的操作
-
了解操作
-
元组
-
作用
-
定义方法
-
类型转换
-
使用
字典
-
定义
-
类型转换
-
使用
-
优先掌握的操作
-
需要掌握的操作
-
集合
-
作用
-
定义
-
类型转换
-
使用
-
关系运算
-
去重
-
其他操作
-
-
练习
可变类型与不可变类型
数据类型总结
一、数字类型int、float
定义
# 定义:
# 整形int的定义
age = 10 # 本质:age = int(20)
# 浮点型float的定义
salary = 3000.3 # 本质:salary = float(3000.3)
# 注意:名字+括号的意思就是调用某个功能,比如:
# print(...)调用打印功能
# int(...)调用创建整形数据功能
# float(...)调用创造浮点型数据功能
类型转换
# 数据类型转换
# int()可以将由纯整数构成的字符串直接转换成整形,若包含其他任意非整数符号,则会报错
>>> s = '123'
>>> res = int(s)
>>> res,type(res)
(123, <class 'int'>)
>>> int('12.3')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: '12.3'
# 进制转换
# 十进制转其他进制
>>> bin(3)
'0b11'
>>> oct(9)
'0o11'
>>> hex(17)
'0x11'
# 其他进制转十进制
>>> int('0b11',2)
3
>>> int('0o11',8)
9
>>> int('0x11',16)
17
# float同样可以用来做数据类型的转换
>>> s = '12.3'
>>> res = float(s)
>>> res,type(res)
(12.3, <class 'float'>)
使用
数字类型主要就是用来做数学运算和比较运算,因此数字类型除了掌握与运算符结合使用之外,并无需要掌握的内置方法
二、字符串
定义
# 定义:在单引号、双引号、三引号内包含的一串字符
name1 = 'json' # 本质:name = str('任意形式内容')
name1 = "json" # 本质:name = str("任意形式内容")
name1 = """json""" # 本质:name = str("""任意形式内容""")
类型转换
# 数据类型转换:str()可以将任意数据类型转换成字符串类型,例如
>>> type(str([1,2,3])) # list->str
<class 'str'>
>>> type(str({'name':'jason','age':'18'})) # dict->str
<class 'str'>
>>> type(str((1,2,3))) # tuple->str
<class 'str'>
>>> type(str({1,2,3,4})) # set->str
<class 'str'>
使用
优先掌握的操作
>>> str1 = 'hello python!'
# 1.按索引取值
# 正向取
>>> str1[6]
'p'
# 反向取
>>> str1[-4]
'h'
# 对于str来说,只能按照索引取值,不能改
>>> str1[0]='H'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'str' object does not support item assignment
# 2.切片
# 顾头不顾尾
>>> str1[0:9]
'hello pyt'
# 步长:第三个参数2代表步长,会从0开始,每次累加一个2即可,所以会取出索引0,2,4,6,8的字符
>>> str1[0:9:2]
'hlopt'
# 反向切片:-1表示从右往左依次取值
>>> str1[::-1]
'!nohtyp olleh'
# 3.长度len
# 获取字符串的长度,即字符的个数,但凡存在于引号内的都算作字符
>>> len(str1)
13
# 4.成员运算 in 和 not in
>>> 'hello' in str1
True
>>> 'tony' not in str1
True
# 5.strip移除字符串首尾指定的字符(默认移除空格)
# 括号内不指定字符,默认移除首位空白字符(空格、\n、\t)
>>> str1 = ' life is short! '
>>> str1.strip()
life is short!
# 括号内指定字符,移除首位指定的字符
>>> str2 = '**tony**'
>>> str2.strip('*')
tony
# 6.切分split
# 括号内不指定字符,默认以空格作为分隔符
>>> str3 = 'hello world'
>>> str3.split()
['hello','world']
# 括号内指定分隔符,则按照括号内指定的字符切割字符串
>>> str4 = '127.0.0.1'
>>> str4.split('.')
['127','0','0','1'] # 注意:split切割得到的结果是列表数据类型
# 7.循环
>>> str5 = '今天你好吗?'
>>> for line in str5:
... print(line)
...
今
天
你
好
吗
?
需要掌握的操作
1.strip,lstrip,rstrip (left、right)
>>> str1 = '**tony***'
>>> str1.strip('*')
'tony'
>>> str1.lstrip('*')
'tony***'
>>> str1.rstrip('*')
'**tony'
2.lower(),upper() 小写大写转换
>>> str2 = 'My nAme is tonY!'
>>> str2.lower()
'my name is tony!'
>>> str2.upper()
'MY NAME IS TONY!'
3.startswith,endswith
>>> str3 = 'tony jam'
# startswith()判断字符串是否以括号内指定的字符开头,结果为布尔值true或False
>>> str3.startswith('t')
True
>>> str3.startswith('j')
False
# endswith()判断字符串是否以括号内指定的字符开头,结果为布尔值true或False
>>> str3.endswith('jam')
True
>>> str3.endswith('tony')
False
4.格式化输出之format
之前我们使用%s来做字符串的格式化输出,在传值时,必须严格按照位置与%s一一对应,而字符串的内置方法format则提供了一种不依赖位置的传值方式
案例:
# format括号内在传参数时完全可以打乱顺序,但仍然能指名道姓地为指定的参数传值,name='tony'就是传给{name}
>>> str4 = 'my name is {name},my age is {age}!'.format(age=18,name='egon')
>>> str4
'my name is egon,my age is 18!'
>>> str4 = 'my name is {name}{name}{name},my age is {name}!'.format(name = 'tony',age=18)
>>> str4
'my name is tonytonytony,my age is tony!'
format的其他使用方式(了解)
# 类似于%s的用法,传入的值会按照位置与{}一一对应
>>> str4 = 'my name is {},my age is{}!'.format('tony',18)
>>> str4
'my name is tony,my age is18!'
# 把format传入的多个值当作一个列表,然后用{索引}取值
>>> str4 = 'my name is {0},my age is{1}!'.format('tony',18)
>>> str4
'my name is tony,my age is18!'
>>>
>>> str4 = 'my name is {1},my age is{1}!'.format('tony',18)
>>> str4
'my name is 18,my age is18!'
5.split,rsplit
# split会按照从左到右的顺序对字符串进行切分,可以指定切割次数
>>> str5 = 'C:/a/b/c/d.txt'
>>> str5.split('/',1)
['C:', 'a/b/c/d.txt']
# rsplit刚好与split相反,从右往左切割,可以指定切割次数
>>> str5.rsplit('/',1)
['C:/a/b/c', 'd.txt']
6.join
# 从可迭代对象中取出多个字符串,然后按照指定的分隔符进行拼接,拼接的结果为字符串
>>> '%'.join('hello')
'h%e%l%l%o'
>>> '|'.join(['tony','18','read'])
'tony|18|read'
7.replace
# 用新的字符替换字符串中旧的字符
>>> str7 = 'my name is tony,my age is 18!'
>>> str7 = str7.replace('18','73')
>>> str7
'my name is tony,my age is 73!'
# 可以指定修改的个数
>>> str7 = 'my name is tony,my age is 18!'
>>> str7 = str7.replace('my','MY',1) # 只把第一个my改为MY
>>> str7
'MY name is tony,my age is 18!'
8.isdigit
# 判断字符串是否时纯数字组成,返回结果为True或False
>>> str8 = '5201314'
>>> str8.isdigit()
True
>>>
>>> str8 = '123g123'
>>> str8.isdigit()
False
了解操作
# 1.find,rfind(略),index,rindex(略),count
# find:从指定范围内查找子字符串的起始索引,找得到则返回数字1,找不到则返回-1
>>> msg = 'tony say hello'
>>> msg.find('o',1,3) # 在索引为1和2(顾头不顾尾)的字符中查找字符o的索引
1
# index:同find,但在找不到时会报错
>>> msg.index('e',2,4) # 报错ValueError
# count:统计字符串在大字符串中出现的次数
>>> msg='hello everyone'
>>> msg.count('e') # 统计字符串e出现的次数
4
>>> msg.count('e',1,6) # 字符串e在索引1-5范围内出现的次数
1
# 2.center,ljust,rjust,zfill
>>> name = 'tony'
>>> name.center(30,'-') # 总宽度为30,字符串居中显示,不够用-填充
'-------------tony-------------'
>>> name.ljust(30,'*') # 总宽度为30,字符串左对齐显示,不够用*填充
'tony**************************'
>>> name.rjust(30,'*') # 总宽度为30,字符串右对齐显示,不够用*填充
'**************************tony'
>>> name.zfill(50) # 总宽度为50,字符串右对齐显示,不够用0填充...z代表zero
'0000000000000000000000000000000000000000000000tony'
# 3.expandtabs
>>> name = 'hello\tworld' # \t代表制表符(tab键)
>>> print(name)
hello world
>>> name.expandtabs(1) # 修改\t制表符代表的空格数
'hello world'
# 4.captalize,swapcase,title
# capitalize:首字母大写
>>> message = 'hello everyoen nice to meet you!'
>>> message.capitalize()
'Hello everyoen nice to meet you!'
# swapcase:大小写翻转
>>> message1 = 'Hi girl,I want to make friends with you!'
>>> message1.swapcase()
'hI GIRL,i WANT TO MAKE FRIENDS WITH YOU!'
# title:每个首字母大写
>>> msg = 'dear my friend,i miss you so much'
>>> msg.title()
'Dear My Friend,I Miss You So Much'
# is数字系列
# 在python3中
>>> num1 = b'4' # bytes
>>> num2 = u'4' # unicode,python3中无需加u就是unicode
>>> num3 = '四' # 中文数字
>>> num4 = 'IV' # 罗马数字
# isdigit:bytes,unicode
>>> num1.isdigit()
True
>>> num2.isdigit()
True
>>> num3.isdigit()
False
>>> num4.isdigit()
False
# isdecimal:unicode(bytes类型无isdecimal方法)
>>> num2.isdecimal()
True