Daftar Membongkar Menggunakan Underscore

x,y,_ = [5,10,15]
print(x)
print(y)
print(_)
Gorgeous Gazelle