Commit c7219661 by BellCodeEditor

save project

parent e9587b95
Showing with 7 additions and 8 deletions
message = "诺依,周末一起去看动漫展吧!"
length=len(message)
i=0
while i<length:
a=message[i]
print(a)
i=i+1
# 请使用索引的知识,取出message所有元素(不用遍历的方式)
text=
......@@ -5,6 +5,7 @@ key = "abcdefgh使用编程实现ä½ç§»æ›¿æ¢åŠ å¯†ï¼Œåˆ¶ä½œå¯†ç æœºå…³çœŸæ˜¯å¤
# 要加密语句
message = "诺依,周末一起去看动漫展吧!"
a=""
b="decefe"
# 请使用私钥key,对message进行加密
for i in message:
str1=i
......@@ -13,3 +14,7 @@ for i in message:
b=str1+str2+str3
a=a+b
print(a)
c=list(a)
c.insert(5,b)
d=" ".join(c)
print(d)
\ 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