8 lines
174 B
Python
8 lines
174 B
Python
|
"""
|
||
|
categories: Core,Functions
|
||
|
description: Unpacking function arguments in non-last position gives incorrect result
|
||
|
cause: Unknown
|
||
|
workaround: Unknown
|
||
|
"""
|
||
|
print(*(1, 2), 3)
|