Python-创建带有2个值之间的数字的列表? [英] Python - Create list with numbers between 2 values?

查看:74
本文介绍了Python-创建带有2个值之间的数字的列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何创建一个列表,并在两个值之间添加一个值? 例如,下面的列表是针对11到16的值生成的.

How would I create a list with values between two values I put in? For example, the following list is generated for values from 11 to 16:

list = [11, 12, 13, 14, 15, 16]

推荐答案

使用 c0> .在Python 2.x中,它返回一个列表,因此您所需要做的就是:

Use range. In Python 2.x it returns a list so all you need is:

>>> range(11, 17)
[11, 12, 13, 14, 15, 16]

在Python 3.x中, range 是迭代器.因此,您需要将其转换为列表:

In Python 3.x range is a iterator. So, you need to convert it to a list:

>>> list(range(11, 17))
[11, 12, 13, 14, 15, 16]

注意:第二个数字是专有的.因此,这里需要为16+1 = 17

Note: The second number is exclusive. So, here it needs to be 16+1 = 17

要回答有关增加0.5的问题,最简单的选择可能是使用 numpy的 arange() .tolist() :

To respond to the question about incrementing by 0.5, the easiest option would probably be to use numpy's arange() and .tolist():

>>> import numpy as np
>>> np.arange(11, 17, 0.5).tolist()

[11.0, 11.5, 12.0, 12.5, 13.0, 13.5,
 14.0, 14.5, 15.0, 15.5, 16.0, 16.5]

这篇关于Python-创建带有2个值之间的数字的列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆