Commit 40efe1e2 by BellCodeEditor

auto save

parent 1c09eab2
Showing with 10 additions and 6 deletions
b = ["曹操","张飞","刘备","关羽"]
b.remove("关羽")
# b.pop(3)
# b.pop(-1)
print(b)
\ No newline at end of file
list=['a','b','c','d']
print("".join(list))
print("/".join(list))
print(" ".join(list))
print(",".join(list))
\ No newline at end of file
text = "周末一起去欢乐谷吧"
li_text = list(text)
print(li_text)
\ 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