Commit 2ac3bb19 by BellCodeEditor

save project

parent 6516b4cb
Showing with 26 additions and 3 deletions
csk=["刘备","关羽","张飞"]
csk1=["刘备",161,9.1]
csk2=["关羽",160,8,5]
csk3=["张飞",166,8.3]
csk[0]="关羽"
csk[1]="刘备"
print(csk)
a=["华雄"]
b=["袁术","夏侯惇","曹操","关羽"]
b.pop(3)
print(b)
i = 5 # 行 bros=["刘备","关羽","张飞"]
j = 3 # 列 bros[0]="关羽"
# 使用变量i和j,代替乘法算式里面的元素,打印出单个乘法算式 bros[1]="刘备"
print(bros)
bros.pop(0)
print(bros)
b=["华雄"]
c=[]
d=["颜良","文丑"]
b.append("关羽")
c.append(d)
print(b)
print(c)
\ 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