- 博客(10)
- 收藏
- 关注
原创 python千年虫
# 使用enumerate函数year = [89, 98, 00, 75, 68, 37, 58, 90]for index, value in enumerate(year): # 遍历列表元素索引与年份 if str(value) == '0': # 判断00的年份 year[index] = int(2000) else: year[index] = int('19' + str(value))print('当前序列输出的初始年.
2022-04-08 12:15:00 715
原创 python BMI指数的函数
def funbmi(q,w,e): bmi=e/w**2 print(bmi)a=input('请输入姓名:')b=float(input('请输入身高:'))c=float(input('请输入体重:'))funbmi(a,b,c)
2022-04-08 12:12:37 1502
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人