Python – Convertir array entera a array de strings
Dada una Array con valores enteros, convierta cada elemento en String. Entrada : test_list = [[4, 5, 7], [10, 8, 3], [19, 4, 6]] Salida: [[‘ 4 ‘, ‘5’, ‘7’], [’10’ , ‘8’, ‘3’], [’19’, ‘4’, ‘6’]] Explicación : todos los elementos de Matrix se convirtieron en strings. Entrada : test_list = [[4, 5, 7], … Continue reading «Python – Convertir array entera a array de strings»