"""
This is a code example of
sorting an array using Bubble Sort
in Python Programming.
Author: Code2care.org
Date: 03-Apr-2022
Version: 1.0
"""
# The provided Input Array to sort using bubble sort
arr = [30, 20, 10, -20, 40, -40, 70, 60, 90, 80, -50]
def bubble_sort(input_arr):
for i in range(len(arr)-1):
for j in range(0, len(arr)-i-1):
if arr[j] > arr[j + 1] :
arr[j], arr[j + 1] = arr[j + 1], arr[j]
print ("Input Unsorted Array: %d", arr)
bubble_sort(arr)
print ("Bubble Sorted Array : %d", arr)
Output:
Input Unsorted Array: %d [30, 20, 10, -20, 40, -40, 70, 60, 90, 80, -50]
Bubble Sorted Array : %d [-50, -40, -20, 10, 20, 30, 40, 60, 70, 80, 90]

Sorting an array using Bubble Sort in Python
More Posts related to Python,
- Comments in Python Programming
- tkinter - Hello World! Program
- How to install Python 3.11 on Mac
- Python matplotlib segmentation fault: 11 macOS Big Sur
- Change label (text) color in tkinter
- Python Hello World! Program with code example (snippet)
- Calculate discount amount python code
- Take input argument from command line in Python Programming
- How to pip install Python Modules in VSCode
- Tkinter - add x and y padding to label text
- Python raise error with message example
- Check if String Contains a Substring - Python
- Python Program To Calculate Simple Interest (SimpleInterest.py)
- What does b prefix before a String mean in Python?
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to List all Packages installed using pip [Python]
- Convert Float to String in Python
- Change the background of Tkinter label or text
- How to Install Python Modules in VS Code
- Indent Python code in Notepad++
- Validate email address in Python using regular expression (regex)
- Python: Fix command not found pip or pip3 on zsh shell
- TypeError: must be str, not int [Fix Python]
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python - Convert float to String
More Posts:
- Android : Duplicate registration for activity com.example.abc - Android
- How to Open Finder using Mac Terminal - MacOS
- Must Know Homebrew Commands for Mac/Linux Users - MacOS
- Display Era details (AD BC) in Java Date using SimpleDateFormat - Java
- How to remove blank lines from a file using Notepad++ - NotepadPlusPlus
- 0xCAA20003: You ran into an authorization problem. [Microsoft] - Microsoft
- What is Microsoft 365 Message You are using more licenses on your trial than what you will purchase once the free trial ends. - Microsoft
- Java SE JDBC Select Statement Example - Java