0

我很难弄清楚如何在不使用列表函数的情况下将整数或字符串添加到列表中,有人可以帮助我吗?

def add(insert, place):
    list1 = [1, 2, 3, 4, 5]
    list1[insert:place]
    return(list1)

insert = int(input("what integer would you like to insert?"))
place = int(input("where do you want it put"))
list1 = p1_function.add(insert, place)
print (list1)
4

1 回答 1

0

如果要在某个位置插入元素,可以使用 list.insert(pos, element)。看看这里:

http://docs.python.org/2/tutorial/datastructures.html

于 2013-11-12T08:50:46.947 回答