Skip to content
Snippets Groups Projects
Commit 513e6567 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

Add testcase for sequence unpacking.

parent edbdf71f
Branches
No related tags found
No related merge requests found
# Basics
a, b = 1, 2
print(a, b)
a, b = (1, 2)
print(a, b)
(a, b) = 1, 2
print(a, b)
(a, b) = (1, 2)
print(a, b)
# Tuples/lists are optimized
a, b = [1, 2]
print(a, b)
[a, b] = 100, 200
print(a, b)
try:
a, b, c = (1, 2)
except ValueError:
print("ValueError")
try:
a, b, c = [1, 2, 3, 4]
except ValueError:
print("ValueError")
# Generic iterable object
a, b, c = range(3)
print(a, b, c)
try:
a, b, c = range(2)
except ValueError:
print("ValueError")
try:
a, b, c = range(4)
except ValueError:
print("ValueError")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment