working on a script which is pretty basic where groups of students are being assigned halls to stay in depending on what they are doing and also their age.
if someones course is medical they will be assined to res4.
medical would include dentistry and medicine. Seems to be a bit stuck on printing the hall assigned it should be res4. Thanks in advance.
medical=["dentistry", "medicine"]
course=input("enter course")
while course in medical
hall=="res4"
print("enter course", course, hall, )