My issue
i didnot understand tthe solution
My code
import persons
def find_person_with_lowest_age():
min_age_person=persons.person[0]
for person in persons.persons[1:]:
if person['age']<min
# Write your code here
lowest_age_person = find_person_with_lowest_age()
print("Person with the lowest age:")
print(f"Name: {lowest_age_person['name']}")
print(f"Age: {lowest_age_person['age']}")
Learning course: Advanced Python
Problem Link: Person module - Coding problem in Advanced Python