共计 288 个字符,预计需要花费 1 分钟才能阅读完成。
要将数字添加到列表中,可以使用列表的 append()
方法。该方法用于在列表末尾添加一个元素。
以下是示例代码:
numbers = [1, 2, 3, 4]
new_number = 5
numbers.append(new_number)
print(numbers) # 输出: [1, 2, 3, 4, 5]
在上述代码中,我们定义了一个名为 numbers
的列表,其中包含一些数字。然后,我们定义一个新的数字 new_number
。使用append()
方法将 new_number
添加到 numbers
列表的末尾。最后,我们打印输出列表的内容,可以看到新的数字已经被添加到了列表中。
丸趣 TV 网 – 提供最优质的资源集合!
正文完