From e025f2eb732c9a8b1c14d9f3243ef6c259ec5a0f Mon Sep 17 00:00:00 2001 From: Naodsh Date: Mon, 6 Nov 2023 01:22:05 +0300 Subject: [PATCH] Update 12-switch_py --- 12-switch_py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12-switch_py b/12-switch_py index be98dff..da532ee 100755 --- a/12-switch_py +++ b/12-switch_py @@ -1,5 +1,5 @@ #!/usr/bin/python3 a = 89 b = 10 -# YOUR CODE GOES HERE. PLEASE REMOVE THIS LINE +a, b = b, a print("a={:d} - b={:d}".format(a, b))