Back to Lesson

Swap Variables

Swap two variables without a temporary variable.

Instructions

Given

a = 10
and
b = 20
, swap their values using Python tuple unpacking and print both.

main.py
main.py