def get_grade(score):
if score >= 90:
return 'A'
elif score >= 80:
return 'B'
elif score >= 70:
return 'C'
elif score >= 60:
return 'D'
else:
return 'F'
result = get_grade(85)
print(result)
def find_max(x, y, z):
return max(x, y, z)
max_num = find_max(10, 25, 18)
print(max_num)
다음검색