Commit 1c285cd1 by BellCodeEditor

auto save

parent 6cd9eb1b
Showing with 19 additions and 8 deletions
str1="本节课我们学习文字加密"
str2="用python进行"
er=list(str1)
re=list(str2)
re.insert(6,er)
e="".join(er)
print(e)
\ No newline at end of file
d=2
c=3
while d<=100:
if(d%2==0):
d-=c
else:
c+=d
d+=1
print("c:",c)
\ No newline at end of file
import turtle
pen=turtle.Pen()
size=turtle.textinput("提示","你想要多大的魔法阵呀? ")
pen.circle(int(size))
pen.circle(int(size),360,3)
pen.circle(int(size),60)
pen.circle(int(size),360,3)
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