wzhouwzhou / one-line-wonders

OneLineWondersCode | 1000+ Commits | 279/300 One Liners | 200+ Forks | Actively maintained open-source collection of "one-line" programs performing various tasks in different languages
https://hacktoberfest2018.suya.moe
GNU General Public License v3.0
96 stars 192 forks source link

Added ordered prepend string number #447

Closed prathimacode-hub closed 3 years ago

prathimacode-hub commented 3 years ago

Please describe your program and how to run it.

...This program takes in a string and a list of numbers. It will prepend the string to each of the numbers and returns a string of this new list separated by commas. For example, foo('$', range(5)) would return '$0, $1, $2, $3, $4'. ...


What Programming Language?

...Python...