Commit 1cff749e by BellCodeEditor

save project

parent 9fa3d244
Showing with 13 additions and 7 deletions
...@@ -2,6 +2,7 @@ message = "诺依,周末一起去看动漫展吧!" ...@@ -2,6 +2,7 @@ message = "诺依,周末一起去看动漫展吧!"
kay = 'asdfghjyuansu' kay = 'asdfghjyuansu'
# 请使用索引的知识,取出message所有元素(不用遍历的方式) # 请使用索引的知识,取出message所有元素(不用遍历的方式)
a = '' a = ''
n = '@#$%^&'
for i in message: for i in message:
star1 = i star1 = i
star2 = random.choice(kay) star2 = random.choice(kay)
...@@ -9,9 +10,14 @@ for i in message: ...@@ -9,9 +10,14 @@ for i in message:
taxt = star1+star2+star3 taxt = star1+star2+star3
a = a+taxt a = a+taxt
iength = len(message) list_message = list(kay_message)
i = 0 list_message.insert(5,n)
while i < iength: result_message = '',join(list_message)
a = message[i] print(result_message)
print(a)
i = i+1 #iength = len(message)
\ No newline at end of file #i = 0
#while i < iength:
# a = message[i]
# print(a)
# i = i+1
\ 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