We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea48eec commit 6cde91dCopy full SHA for 6cde91d
1 file changed
prep exercises/Enums exercise.py
@@ -44,10 +44,6 @@ def find_possible_laptops(laptops: List[Laptop], person: Person) -> List[Laptop]
44
Laptop(id=4, manufacturer="Apple", model="macBook", screen_size_in_inches=13, operating_system=OperatingSystem.MACOS),
45
]
46
47
-# for person in people:
48
-# possible_laptops = find_possible_laptops(laptops, person)
49
-# print(f"Possible laptops for {person.name}: {possible_laptops}")
50
-
51
name = input("Please enter your name: ")
52
53
def get_age() -> int:
0 commit comments