Commit f24a8989 by BellCodeEditor

auto save

parent 3b020d4f
Showing with 9 additions and 1 deletions
import time list1 = [88,75,72,82,90,85,78,91]
t = len(list1)
for i in range(0,t-1):
for j in range(0,t-1):
if list1[j] > list1[j+1]:
list1[j],list1[j + 1] = list1[j + 1], list1[j]
print(list1)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment