1 2 3 4 5 6 7 8 9
try: zip set except NameError: print("SKIP") raise SystemExit print(list(zip())) print(list(zip([1], set([2, 3]))))