Commit d7b0ab9d by BellCodeEditor

auto save

parent f0c715f8
Showing with 11 additions and 0 deletions
import random
a=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33]
b=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]
for i in range(7):
if i<6:
i=random.choice(a)
print(i,end=" ")
a.remove(i)
else:
i=random.choice(b)
print(i)
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