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))
本文标题:Create list of tuples
本文链接:https://www.haomeiwen.com/subject/lwpaaxtx.html
网友评论