mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 13:48:49 +07:00
6 lines
120 B
Python
6 lines
120 B
Python
f = "fst"
|
|
s = "snd"
|
|
"first is %(fst)s, second is %(snd)s" % {f: 1, s: 2}
|
|
|
|
snd = "snd"
|
|
"%(f)s %(snd)s" % {"f": 2, snd: 2} |