Python
scores = [55, 72, 90, 48, 63, 100, 59]

# Write passing(scores): list of scores that are 60 or above.
def passing(scores):
    pass