This must have been asked before, but I\'m afraid I can\'t find the answer.
In R, I can write
paste0(\'s\', 1:10)
which returns a l
>>> list(map('s{}'.format, range(1, 11))) ['s1', 's2', 's3', 's4', 's5', 's6', 's7', 's8', 's9', 's10']