Skip to content

Commit fee3115

Browse files
committed
TR updates, first round
1 parent c7904d4 commit fee3115

File tree

5 files changed

+3
-2
lines changed

5 files changed

+3
-2
lines changed
File renamed without changes.

python-lists-tuples/unpacking.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
temp = a
1313
a = b
1414
b = temp
15-
(a, b)
15+
print(a, b)
16+
1617
a = "foo"
1718
b = "bar"
1819
# Using unpacking
1920
a, b = b, a
20-
a, b
21+
print(a, b)

0 commit comments

Comments
 (0)