Attribuez plus d'une variable à la fois sur une seule ligne de Python

x, y = 5, 11
print(x)
print(y)
# 5
# 11

x, y = (5, 11)
print(x)
print(y)
# 5
# 11
Rajitha Amarasinghe