Coverage for docs_src / python_types / tutorial008_py310.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1def process_items(prices: dict[str, float]): 1efgh

2 for item_name, item_price in prices.items(): 1abcd

3 print(item_name) 1abcd

4 print(item_price) 1abcd