Type Annotations in Python 3 - Printable Version +- QP School (https://qomplainerzschool.lima-city.de) +-- Forum: Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=3) +--- Forum: Python 3 Tutorials and examples (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=51) +--- Thread: Type Annotations in Python 3 (/showthread.php?tid=5067) |
Type Annotations in Python 3 - Qomplainerz - 07-25-2023 def add_numbers(a: int, b: int) -> int: return a + b result = add_numbers(5, 10) print(result) # Output: 15 |