mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
8 lines
195 B
Python
8 lines
195 B
Python
tuple = (3, 4)
|
|
"{3}".format(*[1, 2, *tuple])
|
|
"{4}".format(*[1, 2, *tuple])
|
|
"{1}".format(*[1, 2, *tuple])
|
|
|
|
"{3}".format(*[*tuple, 1, 2])
|
|
"{4}".format(*[*tuple, 1, 2])
|
|
"{1}".format(*[*tuple, 1, 2]) |