while customer_no < 51:
spent_time = randint(5, 50)
if spent_time < 16:
print ("[O] {0}번째 손님 (소요시간 : {1}분)".format(customer_no, spent_time))
total_customer += 1
customer_no += 1
else:
print ("[ ] {0}번째 손님 (소요시간 : {1}분)".format(customer_no, spent_time))
customer_no += 1
print ("총 탑승 승객 : {0} 분".format(total_customer))
왜 이러는 걸까요?