Commit 26db61bc by BellCodeEditor

save project

parent 151a9796
Showing with 26 additions and 0 deletions
a=input("数学成绩")
b=input("语文成绩")
c=input("英语成绩")
s=int(a)+int(b)+int(c)
t=s/3
print(s)
print(t)
\ No newline at end of file
brys=["关羽","刘备","张飞","曹操","董卓"]
brys.pop(3)
brys.remove("董卓")
a=["颜良","文丑"]
brys.insert(5,"张良")
brys.appent("华雄")
print(brys)
# a=['华雄']
# b=['']
\ 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