Commit 5cdb5551 by BellCodeEditor

auto save

parent 5ec53ebb
Showing with 17 additions and 0 deletions
XCK=("苹果","香蕉","桃子","香蕉","草莓")
print(XCK[2])
XCK.index("香蕉")
XCK.count("香蕉")
if "草莓" in XCK:
print("在")
else:
print("不在")
Ikun=("葡萄","车厘子")
KunKun=XCK+Ikun
print(KunKun)
ikunkun=list(KunKun)
ikunkun.append("樱桃")
ikunkun.remove("桃子")
IKUN=tuple(ikunkun)
print(IKUN)
\ 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