str()函数、int()函数、float()函数
str()函数是字符串函数;int()函数为整数型函数;float()函数为浮点型(小数)函数。
示例:
'''
python 常用函数
'''
# str()函数;int()函数;float()函数;
# 定义一个int函数,转换为str函数
score = 90
print('小明的语文成绩为' + str(score) + '分。')
# 定义一个str函数,转换成int函数
a = '90'
b = int(a) - 80 # 使用int将字符串‘a’转换成数字a后才可以计算
print(b)
# 定义一个str函数,转换成float函数
c = '3.1415'
b = '90'
print(float(c) - float(b))
执行结果:
round()函数
round()函数函数用于讲一个数字保留到指定的小数位。
示例
# 定义一个str函数,转换成float函数
c = '3.1415'
b = '90'
print(round(float(c) - float(b),2)) # 保留小数点后2位
执行结果为:-86.86
len()函数
用于统计列表元素的个数
'''
python 常用函数
'''
# 使用len()函数统计列表元素
title = ['Python','从入门','到精通']
print(len(title))
# he range()函数一起使用
title = ['Python','从入门','到精通']
for i in range(len(title)):
print(str(i + 1) + '.' + title[i])
# len()用于统计字符串长度
mibao = '2022米宝在学习python'
print(len(mibao))
执行结果:
replace()函数
replace()函数主要用于在字符串中替换指定内容
'''
python 常用函数
'''
'''
python 常用函数
'''
# replace()函数的使用
a = '<em>拼多多</em>电商脱贫成“教材”'
# a = a.replace('<em>', '')
# a = a.replace('</em>', '')
print(a)
# replace()函数的使用
a = '<em>拼多多</em>电商脱贫成“教材”'
a = a.replace('<em>', '')
a = a.replace('</em>', '')
print(a)
执行结果:
strip()函数
strip()函数通常用于删除字符串首尾多余的空白字符(包括换行符\n和空格)
'''
python 常用函数
'''
'''
strip()函数的使用方法
'''
# strip()函数的使用方法
a = ' <em>拼多多</em>电商脱贫成“教材” '
a = a.replace('<em>', '')
a = a.replace('</em>', '')
# a = a.strip()
print(a)
# strip()函数的使用方法
a = ' <em>拼多多</em>电商脱贫成“教材” '
a = a.replace('<em>', '')
a = a.replace('</em>', '')
a = a.strip()
print(a)
执行结果:
split()函数
split()函数主要用于根据指定分隔符拆分字符串,并与列表形式返回
'''
python 常用函数
'''
'''
split()函数的使用方法
'''
# split()函数的使用方法
today = '2022-08-24'
a = today.split('-')
b = today.split('-')[0] # 获取年份信息,即拆分第一个元素
c = today.split('-')[1]# 获取月份信息,即拆分第2个元素
print(a,b,c)
执行结果:[‘2022′, ’08’, ’24’] 2022 08
评论 (0)