← Code LabPython0/50 solved · 0%
Types · medium

26. Type hints

Annotate function signatures.

Write `get_balance(address: str) -> float` returning `0.0` for any input, using proper type hints on the parameter and return type.
Required in your answer: address: str-> float