# 使用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('当前序列输出的初始年份:', year) year.sort(reverse=False)# 把列表进行升序排序 print('升序当前输出的初始年份:', year)
推荐阅读
- vue|vue项目你一定会用到的性能优化!
- python|RuntimeError: result type Float can‘t be cast to the desired output type __int64 yolov5 V6.x
- 机器学习|吴恩达机器学习笔记---Octave教程(Python实现)
- python|python setup.py install安装setuptools,pip出错,踩坑记录(下载,配置环境变量)
- 图像处理|信用卡数字识别(opencv,代码分析)
- Python|Tea Data Analysis System 茶饮数据分析系统
- python从入门到出家|python从入门到出家(一)输入输出
- 大数据|数据分析中的“产品思维”经验讲解
- Python实战教程|30天Python入门(第二天(深入了解Python中的变量和内置函数))