Commit 43d92f0c by BellCodeEditor

auto save

parent 4f3bf8fb
Showing with 57 additions and 1 deletions
import turtle
a = turtle.Pen()
a.lt(90)
a.fd(200)
a.up()
a.goto(-100,100)
a.pd()
a.pencolor("black")
a.speed(0)
a.fillcolor("black")
a.begin_fill()
a.fd(100)
a.rt(90)
a.fd(200)
a.lt(90)
a.fd(100)
a.lt(90)
a.fd(100)
a.lt(90)
a.fd(200)
a.rt(90)
a.fd(100)
a.end_fill()
a.rt(90)
a.fd(200)
a.rt(90)
a.fd(100)
a.rt(90)
a.fd(200)
a.lt(90)
a.fd(100)
a.lt(90)
a.fd(100)
a.hideturtle()
turtle.done()
\ No newline at end of file
import turtle
a = turtle.Pen()
a.dot(10,"red")
a.up()
a.bk(40)
a.down()
a.dot(10,"red")
a.up()
a.fd(80)
a.down()
a.dot(10,"red")
a.up()
a.goto(-100,100)
a.down()
for i in range(4):
a.fd(200)
a.rt(90)
a.hideturtle()
turtle.done()
\ No newline at end of file
...@@ -3,7 +3,7 @@ import random ...@@ -3,7 +3,7 @@ import random
# 私钥 # 私钥
key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!" key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!"
# 要加密语句 # 要加密语句
message = imput message = imput("shuru")
# 请使用私钥key,对message进行加密 # 请使用私钥key,对message进行加密
for i in message: for i in message:
......
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