This commit is contained in:
2025-07-04 21:48:06 +08:00
parent ee2a18c0c4
commit 3f10677c91

View File

@ -1,16 +1,15 @@
list=['原神'] list = ["原神"]
for i in list: while True:
list.append(input('何事?')) list.append(input("何事?"))
a=input('何事终了?') a = input("何事终了?")
if a in list: if a in list:
list.remove(a) list.remove(a)
else: else:
pass pass
print('未尽之事:',list) print("未尽之事:", list)
b = input('是否下一周目(1是2否)') b = input("是否下一周目(1是2否)")
if b == 1: if b == "1":
continue; continue
else: else:
print('未尽之事:',list) print("未尽之事:", list)
break; break
#为什么没用到i也可以用i来进行循环