说,我有这个功能:
def f():
a = randint(-6, 7)
b = randint(-6, 7)
d = (a+b)
if (( d ) > 0):
c = (-1 * d)
if (( d ) < 0):
c = (-1 * d)
if (( d ) == 0):
c = 0
return a, b, c
是否可以将列表的索引设置为b或c,如:
list1 [2] = c
还是什么?
答案 0 :(得分:0)
nth element of the list = list[n-1]
例如: 如果你想让列表的第一个元素为“是”。
list[0]='yes'