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