import random a = [] numbers = 30000 f = open("randomNumber.txt", "a") for i inrange(numbers): a.append(random.uniform(0, 1)*numbers) f.write(str(a[-1])+",") f.close()
defbubbleSort(arr): n = len(arr) # Traverse through all array elements for i inrange(n-1): # range(n) also work but outer loop will repeat one time more than needed. # Last i elements are already in place for j inrange(0, n-i-1): # traverse the array from 0 to n-i-1 # Swap if the element found is greater # than the next element if arr[j] > arr[j+1] : arr[j], arr[j+1] = arr[j+1], arr[j]