题目:
30 个人在一条船上,超载,需要 15 人下船。
于是人们排成一队,排队的位置即为他们的编号。
报数,从 1 开始,数到 9 的人下船。
如此循环,直到船上仅剩 15 人为止,问都有哪些编号的人下船了呢?
liver = list(range(1, 31))
index = 1
list_index = index - 1
while True:
if len(liver) <= 15:
break
else:
if index == 9:
print('{0}号下船了'.format(liver[list_index]))
liver.remove(liver[list_index])
index = 1
else:
index += 1
list_index += 1
if list_index == len(liver):
list_index = 0
结果如下: