a = """foo""" b = """foo2""" c = """foo3""" mylist = [a, b, c] def example(): print (random.choice(mylist)) if "foo2" in mylist: quit(0) ...
確定! 回上一頁