Bedingungen

This commit is contained in:
2026-06-05 15:10:38 +02:00
parent 85190aedd8
commit 983f451e92
2 changed files with 35 additions and 1 deletions
+1 -1
View File
@@ -19,6 +19,6 @@ text: str = "Hallo, Welt!"
number: int = 42
dezimal: float = 3.14159
boolean: bool = True
list_of_numbers: list = [1, 2, 3, 4, 5]
list_of_numbers: list[int] = [1, 2, 3, 4, 5]
dictionary: dict = {"name": "Max Mustermann", "age": 30}
two_variables: tuple = (1, "Hallo")