|
|
|
|
|
by dima55
2756 days ago
|
|
Sigils have been standard in shells for decades. And sigils allow string interpolation to work; again, just like in normal unix shells. The python people decided that sigils are a bad idea, so instead of being able to say "I have $n apples" (like you could in shells we've all been using forever!) I now need to say "I have {} apples".format(n). I know which one I prefer! |
|
In terms of interpolation, that's the variant that I like best.