Posts by fnands • 31 points
2 posts
-
2
votes1
answer298
viewsQ: Determine sequence of numbers with Bubble Sort from a python txt file?
I have a txt input file with data type the below: 7 6 8 4 8 5 0 1 2 1 0 3 2 3 0 This file is about information for 3 students of a school. The first line is the age of these 3 students (the first…
-
1
votes3
answers1041
viewsQ: Sort sequence of numbers from a TXT file
I have a TXT file with numbers separated by spaces and I want to sequence from the smallest number to the largest, just the numbers from the first line of that file. The logic of sequencing I…