3 lines
118 B
Python
3 lines
118 B
Python
|
|
||
|
def formatted_item_listing(item):
|
||
|
return "{} {} for {}D".format(item["amount"], item["item_name"], item["price"])
|