Commit 60da5a35 by BellCodeEditor

auto save

parent 728a6cfe
Showing with 16 additions and 0 deletions
str1 = "本节课我们学习文字加密"
str2 = "python"
list = list(str1)
list.insert(6,str2)
str3="".join(list)
print(str3)
\ No newline at end of file
str1 = "dellcode"
print(str1[4:])
\ No newline at end of file
import random
list_message=list("hello world")
result_message="".join("hello world")
index=random.randint(0,len("hello world"))
print("hello world")
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