Today i'll publish a riddle.
The best answer will be the shortest code.
Write a one liner function that accepts a currency and a list of numbers. The function needs to return a string where each number from the list is attached with its currency.
Here's an example for a simple way to solve it.
def combine_coin(coin, numbers):
coins_str = ''
for num in numbers:
coins_str += coin + str(num) + ', '
return coins_str[:-2]
print(combine_coin('$', range(5)))