We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
def classify_age(age): if age < 18: return "child" else: return "adult" output = classify_age(18) print(output) output = classify_age(7) print(output) output = classify_age(50) print(output)