Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
resolve
/
StarUnpackingInLoop.py
blob: 6c28f6b7a214c97be2d21f3d8c182825efc473db [
file
] [
log
] [
blame
]
def
implicit_assignment
():
seq
=
[(
1
,
2
,
3
),
(
4
,
5
,
6
,
7
)]
for
a
,
*
bbb
in
seq
:
print
(
bbb
)
# <ref>