Commit 5945fe24 by BellCodeEditor

save project

parent faca1930
Showing with 3 additions and 3 deletions
# 勇于挑战的创造师,请运行下面的代码,观察运行结果,和小伙伴们说说你的发现? # 勇于挑战的创造师,请运行下面的代码,观察运行结果,和小伙伴们说说你的发现?
a= ['华雄'] a= ['华雄']
print(a+':') print(str(a)+':')
c=['颜良','文丑'] c=['颜良','文丑']
print('我要'+str(c)+'我怕怕') print('我要'+str(c)+'我怕怕')
c.append(a[0]) c.append(a[0])
print(str(c)+'我还是怕怕') print(str(c)+'我还是怕怕')
c.insert(0,'关羽') c.insert(0,'关羽')
print(c) print(c)
print(a+':') print(str(a)+':我怕怕')
\ No newline at end of file \ 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