Commit cf0da395 by BellCodeEditor

save project

parent 5ec53ebb
Showing with 20 additions and 0 deletions
dx=("苹果","香蕉","桃子","香蕉","草莓")
dx[2]
dx.index("香蕉")
dx.count("香蕉")
if "草莓" in dx:
print("在")
else:
print("不在")
xzd=("葡萄","车厘子")
dw=dx+xzd
a=list(dw)
a.append("樱桃")
a.remove("桃子")
b=tuple(a)
print(b)
\ No newline at end of file
print("hell world")
\ No newline at end of file
++ "b/\346\210\221\345\260\261.py"
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