Commit b4388142 by BellCodeEditor

save project

parent e09cf76f
Showing with 26 additions and 0 deletions
import random
d=0
s=0
b=0
for i in range(3000):
x=random.randint(8,10)
if x==8:
d+=1
if x==9:
s+=1
if x==10:
b+=1
print(d)
print(s)
print(b)
steamer={'第一格':'猪八戒'}
steamer['第二格']='假行者'
steamer['第一格']='唐僧'
steamer['第三格']='沙僧'
steamer['第四格']='猪八戒'
print(steamer)
print(steamer['第四格'])
\ 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