Browse Source

📝 Update Python Types docs, add missing 3.6 / 3.9 example (#4434)

pull/4436/head
Sebastián Ramírez 3 years ago
committed by GitHub
parent
commit
7fe79441c1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/en/docs/python-types.md
  2. 5
      docs_src/python_types/tutorial008.py
  3. 4
      docs_src/python_types/tutorial008_py39.py

2
docs/en/docs/python-types.md

@ -252,7 +252,7 @@ The second type parameter is for the values of the `dict`:
=== "Python 3.9 and above"
```Python hl_lines="1"
{!> ../../../docs_src/python_types/tutorial008.py!}
{!> ../../../docs_src/python_types/tutorial008_py39.py!}
```
This means:

5
docs_src/python_types/tutorial008.py

@ -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)

4
docs_src/python_types/tutorial008_py39.py

@ -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…
Cancel
Save