From Array To Tuple Python

convert tuple to array python
import numpy

my_tuple = ([8, 4, 6], [1, 2, 3])
print("Tuple to array: ")
print(numpy.asarray(my_tuple))
from array to tuple python
def arrayToTuple(arr):
for i in range(len(arr)):
try:
arr[i] = tuple(arr[i])
except:
arr[i]
return arr

Leave a Comment