📜  使用下划线解包列表 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:49.468000             🧑  作者: Mango

代码示例1
x,y,_ = [5,10,15]
print(x)
print(y)
print(_)