如何在 list() 中附加数据而不将其分配到 python 解释器中的变量中

How to append data in list() without assigning it in a variable in python Interpreter

如何在 Python 解释器中不分配变量的情况下在 list() 中追加数据? 我正在尝试使用此代码

list([1, 2]).append(3)

输出为:None

我得到这样的输出 [1, 2, 3]

您只需输入 [1, 2, 3] 或 [1, 2] + [3]