Answers for "np array to tuple"

0

np array to tuple

>>> arr = numpy.array(((2,2),(2,-2)))
>>> tuple(map(tuple, arr))
((2, 2), (2, -2))
Posted by: Guest on September-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language