Commit 1cff749e by BellCodeEditor

save project

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