# 是否學生
is_student = False
# 是否是會員
has_coupon = True

can_discount = is_student or has_coupon

print(can_discount)