Commit c7219661 by BellCodeEditor

save project

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