pytutorial/python_typing
David Rotermund f55833cd6c
Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-11-23 18:44:12 +01:00
..
README.md Update README.md 2023-11-23 18:44:12 +01:00

Python -- Type annotations and static type checking for Python

Goal

We want to use static type checking and type annotations in our Python code for detecting errors we made. We will use the tool mypy for that.

a: int = 0
b: float = 0.0
a = b     Incompatible types in assignment (expression has type "float", variable has type "int")

Questions to David Rotermund