Commit 73ff1d4b by BellCodeEditor

auto save

parent 0cc37ad4
Showing with 10 additions and 0 deletions
# a=['1','2','3','12']
# # b=str(a)
# c='q'.join(a)
# print(c)
noise='qh934t8'#设置一个干扰字符
text='1234'
text=list(text)#将text变成列表
text.insert(2,noise)#将noise放在列表的2位置处
text=''.join(text)#将列表text转化成字符串。
print(text)
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