Untitled
unknown
plain_text
2 years ago
483 B
9
Indexable
def id_to_fruit(fruit_id: int, fruits: Set[str]) -> str:
idx = 0
for fruit in fruits:
if idx == fruit_id:
return fruit
idx += 1
raise RuntimeError(f"Fruit with id {fruit_id} does not exist")
name1 = id_to_fruit(1, {"apple", "orange", "melon", "kiwi", "strawberry"})
name3 = id_to_fruit(3, {"apple", "orange", "melon", "kiwi", "strawberry"})
name4 = id_to_fruit(4, {"apple", "orange", "melon", "kiwi", "strawberry"})
print(name1, name3, name4)Editor is loading...