Write a sorting algorithm for a numerical dataset in Python.Write a sorting algorithm for a numerical dataset in Python.

By ayush goel in 22 Sep 2023 | 04:13 pm
ayush goel

ayush goel

Student
Posts: 346
Member since: 21 Sep 2023

Write a sorting algorithm for a numerical dataset in Python.

22 Sep 2023 | 04:13 pm
0 Likes
divas goyal

divas goyal

Student
Posts: 453
Member since: 22 Sep 2023

data = [5, 2, 9, 1, 5, 6]

sorted_data = sorted(data)

print(sorted_data)


22 Sep 2023 | 06:17 pm
0 Likes

Report

Please describe about the report short and clearly.