Commit 0830dfb4 by BellCodeEditor

save project

parent 556488c2
Showing with 16 additions and 1 deletions
room = []
for i in range(ord('a'),ord('z')+1):
room.append(chr(i))
print(room)
\ No newline at end of file
print(bin(ord('a')))
\ No newline at end of file
asoa = [20,17,9,13,5,6]
n = len(asoa)-1
for i in range(0,n):
for J in range(0,n):
if asoa[J]>asoa[J+1]:
asoa[J],asoa[J+1] = asoa[J+1],asoa[J]
print(asoa)
\ No newline at end of file
import time import time
opftime = time.time() opftime = time.time()
list1 = []
for a in range(0, 1000): for a in range(0, 1000):
for b in range(0, 1000): for b in range(0, 1000):
for c in range(0,1000): for c in range(0,1000):
......
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