insert在python里是啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了insert在python里是啥意思相关的知识,希望对你有一定的参考价值。
insert()是Python中的内置函数,可将给定元素插入列表中的给定索引。
python的insert函数中有两个必填参数,第一个是填充的位置,第二个是填充的内容。必须有小数点,不然报错。一般用1.0,就是往下面一行行的写。
insert()的参数和返回值
参数:index - the index at which the element has to be inserted.
element - the element to be inserted in the list.
返回值:This method does not return any value but
it inserts the given element at the given index.
参考技术A 描述:insert()函数用于将指定对象插入列表的指定位置。
语法:
inser()方法语法:
list.insert(index, obj)
参数:
index -- 对象obj需要插入的索引位置。
obj -- 要插入列表中的对象。
返回值:
该方法没有返回值,但会在列表指定位置插入对象。
实例
以下实例展示了insert()函数的使用方法:
#!/usr/bin/python
aList = [123. 'xyz', 'zara', 'abc']
aList.insert(3. 2009)
print "Final List : ", aList
以上实例输出结果如下:
Final List : [123. 'xyz', 'zara', 2009. 'abc']
period在股票公式里是啥意思
period应该是“周期”的意思 参考技术A PERIOD时间函数,表示"周期类型";取得周期类型.
结果从0到13,依次分别是1/5/15/30/60分钟,日/周/月,多分钟,多日/季/年,5秒线/多秒线,13以上为自定义周期。
以上是关于insert在python里是啥意思的主要内容,如果未能解决你的问题,请参考以下文章