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