Commit 52fb348b by BellCodeEditor

save project

parent fbbf4a66
Showing with 7 additions and 3 deletions
list1 = []
for a in range(0, 1000):for b in range(0, 1000):list1.insert(0, 0)
\ No newline at end of file
l=[]
for i in range(int(input('Enter long:'))):l.append(int(input('Enter number:')))
for a in range(len(l)-1):
for b in range(len(l)-1):
if l[b]>l[b+1]:l[b],l[b+1]=l[b+1],l[b]
print(l)
\ 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