Room Assignments#
Given the following function assign_room(num_students), identify what each function calls will be return.
def assign_room(num_students):
if num_students <= 146:
return "GS 216"
elif num_students <= 196:
return "Babbio"
elif num_students <= 295:
return "Pier A"
return "no room"