摘要:
from sys import exit def gold_room(): print("This room is full of gold. How much do you take?") #这个房间装满了金币 你要拿多少? choice = input(">>>") if "0" in choice or "1" in choice: h... 阅读全文
摘要:
# this one is like your scripts with argv def print_two(*args): arg1, arg2 = args print(f"arg1: {arg1}, arg2: {arg2}") # ok, that *args is actually pointless, we can just do this def print_... 阅读全文