From 64350fef1e9ee5fa7028bc42a1367e864fef39a2 Mon Sep 17 00:00:00 2001 From: khageshwor Date: Thu, 31 Dec 2020 20:45:49 +0545 Subject: [PATCH] Add python program for bubble sorting --- SORTING/Python/bubble_sort.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 SORTING/Python/bubble_sort.py diff --git a/SORTING/Python/bubble_sort.py b/SORTING/Python/bubble_sort.py new file mode 100644 index 00000000..0dcf8c74 --- /dev/null +++ b/SORTING/Python/bubble_sort.py @@ -0,0 +1,15 @@ +def bubbleSort(arr): + n = len(arr) + + for i in range(n-1): + for j in range(0, n-i-1): + if arr[j] > arr[j+1] : + arr[j], arr[j+1] = arr[j+1], arr[j] + +arr = [23, 34, 25, 12, 54, 11, 90] + +bubbleSort(arr) + +print ("Sorted array is:") +for i in range(len(arr)): + print (arr[i]) \ No newline at end of file