Question
Default substituting %s in python scripts
Sometimes in Python scripts I see lines like:
cmd = "%s/%s_tb -cm cond+line+fsm -ucli -do \"%s\""
Where is the %s
in the above line substituted? Does Python have some stack of strings and it pops them and replaces %s
?
21 104736
21