Latest Awards
Complete 10 python programs which focus on loops.

morgan

Score over 100 points in total

vincebanter10

Complete any 5 python programs

vincebanter10

Complete 3 python list based tasks

vincebanter10

Complete 5 python list based tasks

vincebanter10

Complete 10 python list based tasks

dman12

Score over 1000 points in total

april-logan

Complete any pygame task

april-logan

Complete any 3 pygame tasks

april-logan

You have to complete 5 pygame tasks

april-logan

Score over 500 points in total

sam-edmund

Complete any pygame task

sam-edmund

Complete any 3 pygame tasks

sam-edmund

You have to complete 5 pygame tasks

sam-edmund

Complete any pygame task

12wrigleyf

Complete any 3 pygame tasks

12wrigleyf

You have to complete 5 pygame tasks

12wrigleyf

Score over 500 points in total

jhoughton12

Complete any 10 python prograns

jhoughton12

Complete 10 python programs which focus on loops.

jhoughton12

Python Score
tasks = 0
achivements = 0
freestyle = 0
Total = 0
Top 5 Scores
114gilo 3460
2joss-nolan-2 2490
3alexdawkins 2475
4byrnebrian 2040
512wattsl 1750
Click to view all scores
Who else completed this task?
14 people have completed this task! Below are some of those users!

byrnebrian joss-nolan-2
12boonhamf alexdawkins
14gilo hxyshul
samkzk matth
hulmeo craig-brooker

Bubble sort

The code below will generate a list of 2000 numbers randomly. Your task is to sort them into ascending order using bubble sort.
import random
randomNumbers = []
count = 0
while count < 2000:
    randomNumbers.append(random.randint(0,10000))
    count += 1

In order to do this task you must first research bubble sort to find out how it works.

NOTE – You must not use any inbuilt sorting methods of python. The solution should contain a nested while loop! (or a nested for in loop)
You need to log in or create an account to submit code!

Leave a Reply

You must be logged in to post a comment.