committed by
GitHub
3 changed files with 9 additions and 2 deletions
@ -1,4 +1,7 @@ |
|||
def process_items(prices: dict[str, float]): |
|||
from typing import Dict |
|||
|
|||
|
|||
def process_items(prices: Dict[str, float]): |
|||
for item_name, item_price in prices.items(): |
|||
print(item_name) |
|||
print(item_price) |
|||
|
@ -0,0 +1,4 @@ |
|||
def process_items(prices: dict[str, float]): |
|||
for item_name, item_price in prices.items(): |
|||
print(item_name) |
|||
print(item_price) |
Loading…
Reference in new issue