Commit abf00b1a by BellCodeEditor

auto save

parent a4bee8b5
Showing with 20 additions and 2 deletions
i =0
for a in range(0, 100):
for b in range(0, 10000):
i+=1
print(i)
\ No newline at end of file
list=["1","1"]
for i in range(10000):
list.append('1')
print(list)
string='to be or not to be that is a question'
alist = [88, 75, 72, 82, 90, 85, 78, 91]
alist = [15,21,9,14,24,18]
n=len(alist)
for i in range(n-1):
for j in range(n-1):
if alist[j]<alist[j+1]:
if alist[j]>alist[j+1]:
alist[j],alist[j+1]=alist[j+1],alist[j]
print(alist)
\ 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