Commit 2c786538 by BellCodeEditor

auto save

parent 0f9f4071
Showing with 52 additions and 1 deletions
...@@ -4,7 +4,15 @@ import random ...@@ -4,7 +4,15 @@ import random
key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!" key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!"
# 要加密语句 # 要加密语句
message = "诺依,周末一起去看动漫展吧!" message = "诺依,周末一起去看动漫展吧!"
#干扰项目
gr="sadfasdfadsf"
# 请使用私钥key,对message进行加密 # 请使用私钥key,对message进行加密
e=""
for i in message:
b=random.choice(key)
c=random.choice(key)
d=i+b+c
e+=d
import turtle
turtle.fillcolor("red")
turtle.begin_fill()
turtle.left(45)
turtle.forward(100)
turtle.left(90)
turtle.circle(50,180)
turtle.end_fill()
turtle.fillcolor("blue")
turtle.begin_fill()
turtle.left(90)
turtle.circle(50,180)
turtle.left(90)
turtle.forward(100)
turtle.end_fill()
turtle.hideturtle()
turtle.done()
\ No newline at end of file
import turtle
turtle.left(45)
turtle.forward(100)
turtle.circle(50,180)
turtle.right(90)
turtle.circle(50,180)
turtle.forward(100)
turtle.hideturtle()
turtle.done()
\ No newline at end of file
'''
import turtle
turtle.speed(1)
a=turtle.Screen()
a.screensize(800,500,"blue")
turtle.circle(100,steps=6)
turtle.hideturtle()
turtle.done()
a=5
a=a+5
print(a==5)
'''
year = float(input("请输入您的出生年份:"))
print("到了2030年,您的年龄是:", 2030-year)
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