Commit 45030a9e by BellCodeEditor

save project

parent 26b3b1d4
Showing with 19 additions and 0 deletions
q1="鹿"
q2="虎"
q3="马"
qs=["鹿","虎","马"]
print(qs[0])
qs.pop(2)
qs.insert(1,"武松")
qs.append("孙悟空")
for i in range(1):
qs.extend(qs)
print(qs)
for i in qs:
print(i)
q1="鹿"
q2="虎鹕"
q3="马"
qs=["鹿","虎鹕","马"]
print(qs)
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