mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 21:57:41 +07:00
8 lines
188 B
Python
8 lines
188 B
Python
list = [3, 4]
|
|
"{3}".format(*[1, 2, *list])
|
|
"{4}".format(*[1, 2, *list])
|
|
"{1}".format(*[1, 2, *list])
|
|
|
|
"{3}".format(*[*list, 1, 2])
|
|
"{4}".format(*[*list, 1, 2])
|
|
"{1}".format(*[*list, 1, 2]) |