Files
Learn/day4/TODO.py

15 lines
340 B
Python
Raw Normal View History

2025-07-04 21:48:06 +08:00
list = ["原神"]
while True:
list.append(input("何事?"))
a = input("何事终了?")
2025-07-03 23:06:09 +08:00
if a in list:
list.remove(a)
else:
pass
2025-07-04 21:48:06 +08:00
print("未尽之事:", list)
b = input("是否下一周目(1是2否)")
if b == "1":
continue
2025-07-03 23:06:09 +08:00
else:
2025-07-04 21:48:06 +08:00
print("未尽之事:", list)
break