"""
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,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- How to update SharePoint List Item programmatically using C#.Net - SharePoint
- NOTE: This project contains resource errors, so aapt did not succeed, which can cause rendering failures. Fix resource problems first. - Android
- Java .replace() RegEx alternative in Python Programming - Python
- How to open TextEdit from Mac Terminal - MacOS
- How to install iTerm2 Mac Terminal Alternative - MacOS
- The Vim (vi) Mac Configuration File Details - vi
- Android : IOException: Unable to open sync connection! - Android
- How to enable Auto-Save Files in VS Code - HowTos