Answers for "array to tuple python"

0

convert tuple to array python

import numpy 

my_tuple = ([8, 4, 6], [1, 2, 3])
print("Tuple to array: ")
print(numpy.asarray(my_tuple))
Posted by: Guest on January-27-2021
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
0

numpy array into tuple

def totuple(a):
    try:
        return tuple(totuple(i) for i in a)
    except TypeError:
        return a
Posted by: Guest on August-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language