Commit 3993feaa by BellCodeEditor

auto save

parent 5fe16fcc
Showing with 18 additions and 12 deletions
i=1
\ No newline at end of file
for i in range(1,10):
for a in range(1,i+1):
print(a,"*",i,"=",(a * i),end=" ")
print()
import random import turtle
key = "懿彝兕镒燚咝鲕脦螣蟘貸貣鋱犆慝蓓贲冗" pen=turtle.Pen()
mss = "汝乃s h ab i否?" screen=turtle.Screen()
key_mss = "" screen.bgcolor("black")
for i in mss: colors=["green","red","orange","yellow"]
str1 = i for i in range(1,300):
str2 = random.choice(key) pen.pencolor(colors[i%4])
str3 = random.choice(key) pen.forward(i)
text = str1+str2+str3 pen.right(91)
key_mss = key_mss + text turtle.hideturtle()
print(key_mss) turtle.done()
\ No newline at end of file \ 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