Commit 55762c19 by BellCodeEditor

auto save

parent 7a24eac0
Showing with 12 additions and 0 deletions
...@@ -15,3 +15,15 @@ for i in message: ...@@ -15,3 +15,15 @@ for i in message:
text = text + str1 + str2 + str3 text = text + str1 + str2 + str3
print(text) print(text)
x = "port&$^%*(^E(@^))"
x = input("请输入 干扰字符。。。")
text = list(text) # str==>int int("12") str(12)
#list("dafdaosgdoafg") ["d","a",...,"g"]
text.insert(random,x)
s = "".join(text)
# "".join(["d","a",...,"g"]) "da....g"
print(text)
print(s)
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