“Trier du tableau en python” Réponses codées

trier arr python

numbers = [4, 2, 12, 8]

sorted_numbers = sorted(numbers)

print(sorted_numbers)
# Output: [2, 4, 8, 12]
Shahab

Comment trier en Python

a=[1,6,10,2,50,69,3]
print(sorted(a))
Thiêm KTH

Trier du tableau en python

Sorted list -> [1, 2, 3, 4, 5]
Sorted array -> [1, 2, 3, 4, 5]
Tense Tarantula

Trier du tableau en python

import array
 
# Declare a list type object
list_object = [3, 4, 1, 5, 2]
 
# Declare an integer array object
array_object = array.array('i', [3, 4, 1, 5, 2])
 
print('Sorted list ->', sorted(list_object))
print('Sorted array ->', sorted(array_object))
Tense Tarantula

Réponses similaires à “Trier du tableau en python”

Questions similaires à “Trier du tableau en python”

Plus de réponses similaires à “Trier du tableau en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code