From 01dc3a6267aa3c27c2e18042d33f3a0204c463c0 Mon Sep 17 00:00:00 2001 From: "Sup#2.0" Date: Thu, 27 Feb 2025 13:55:57 +0000 Subject: [PATCH] cleanup issues --- issues/21.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/issues/21.md b/issues/21.md index 3a6e4d4..fe9bd40 100644 --- a/issues/21.md +++ b/issues/21.md @@ -98,9 +98,7 @@ And that doesn’t work, because we lose the value of `x`. When we try to set `y ("right", "right") ``` -What can this mean, other than some more Python trickery? - -`x, y = y, x` looks perfectly natural, but it’s actually quite an unnatural mechanic. In fact, you don’t find it in many other languages. We’ll uncover exactly what’s going on next issue... +`x, y = y, x` looks perfectly natural, but it’s actually quite an unnatural mechanic. In fact, you don’t find it in many other languages. So how come it works? What can this mean, other than some more Python trickery... we’ll uncover exactly what’s going on next issue!