如何理解python中数字列表
作者:silencement 时间:2023-01-30 13:29:09
数字列表和其他列表类似,但是有一些函数可以使数字列表的操作更高效。我们创建一个包含10个数字的列表,看看能做哪些工作吧。
# Print out the first ten numbers.
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for number in numbers:
print(number)
range() 函数
普通的列表创建方式创建10个数是可以的,但是如果想创建大量的数字,这种方法就不合适了。range() 函数就是帮助我们生成大量数字的。如下所示:
# print the first ten number
for number in range(1, 11):
print(number)
range() 函数的参数中包含开始数字和结束数字。得到的数字列表中包含开始数字但不包含结束数字。同时你也可以添加一个 step 参数,告诉 range() 函数取数的间隔是多大。如下所示:
# Print the first ten odd numbers.
for number in range(1,21,2):
print(number)
如果你想让 range() 函数获得的数字转换为列表,可以使用 list() 函数转换。如下所示:
# create a list of the first ten numbers.
numbers = list(range(1,11))
print(numbers)
这个方法是相当强大的。现在我们可以创建一个包含前一百万个数字的列表,就跟创建前10个数字的列表一样简单。如下所示:
# Store the first million numbers in a list
numbers = list(range(1,1000001))
# Show the length of the list
print("The list 'numbers' has " + str(len(numbers)) + " numbers in it.")
# Show the last ten numbers.
print("\nThe last ten numbers in the list are:")
for number in numbers[-10:]:
print(number)
min(), max() 和 sum() 函数
如标题所示,你可以将这三个函数用到数字列表中。min() 函数求列表中的最小值,max() 函数求最大值,sum() 函数计算列表中所有数字之和。如下所示:
ages = [23, 16, 14, 28, 19, 11, 38]
youngest = min(ages)
oldest = max(ages)
total_years = sum(ages)
print("Our youngest reader is " + str(youngest) + " years old.")
print("Our oldest reader is " + str(oldest) + " years old.")
print("Together, we have " + str(total_years) +
" years worth of life experience.")
知识点补充:
range()函数
在python中可以使用range()函数来产生一系列数字
for w in range(1,11):
print(w)
输出:
1
2
3
4
5
6
7
8
9
10
#注意:这里的到10就结束了,不包括11
来源:https://www.py.cn/jishu/jichu/10530.html
标签:python,数字列表
0
投稿
猜你喜欢
python和opencv实现抠图
2023-12-13 20:43:33
Python MySQLdb Linux下安装笔记
2024-01-15 14:12:12
报错No module named numpy问题的解决办法
2023-09-20 12:02:07
Python 时间操作time详情
2023-09-13 13:23:09
Go中变量命名规则与实例
2024-05-09 09:55:45
pytorch SENet实现案例
2021-03-27 05:14:23
Javascript正则表达式基础
2009-02-01 18:13:00
Python-while 计算100以内奇数和的方法
2022-03-24 12:00:39
Python 使用多属性来进行排序
2023-11-10 21:15:07
Pycharm 2to3配置,python2转python3方式
2021-07-05 21:39:50
tensorflow使用指定gpu的方法
2022-10-23 16:00:31
利用Python编写一个闹钟,治好你的拖延症
2021-11-15 12:06:48
python 批量将PPT导出成图片集的案例
2021-09-14 17:52:36
JSP使用MVC模式完成删除和修改功能实例详解
2024-03-20 03:39:42
PyQt+socket实现远程操作服务器的方法示例
2022-07-19 01:56:13
简单介绍MySQL中索引的使用方法
2024-01-15 07:04:50
Git Bash终端默认路径的设置查看修改及拓展图文详解
2023-08-22 02:03:40
mysql双向加密解密方式用法详解
2024-01-15 05:55:02
六行python代码的爱心曲线详解
2022-04-09 23:15:17
pygame学习笔记(6):完成一个简单的游戏
2021-10-16 11:08:01