Create list of tuples
2018-01-28 本文已影响0人
sherrysack
How to create a tuple of tuples like: ((1, 0), (1, 0), (1, 0), (1, 0))
a = 4[1]
b = 4[0]
bnds = tuple(zip(a,b))
How to create a tuple of tuples like: ((1, 0), (1, 0), (1, 0), (1, 0))
a = 4[1]
b = 4[0]
bnds = tuple(zip(a,b))