Convertir le tuple en array Python
import numpy my_tuple = ([8, 4, 6], [1, 2, 3]) print("Tuple to array: ") print(numpy.asarray(my_tuple))
De la matrice à Tuple Python
def arrayToTuple(arr): for i in range(len(arr)): try: arr[i] = tuple(arr[i]) except: arr[i] return arr