Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson6-3
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
c101245l803p219a8308/wx556072
Switch branch/tag
lesson6-3
quiz2.py
Find file
Normal view
History
Permalink
quiz2.py
189 Bytes
Edit
Newer
Older
Add new file
c593e827
Administrator
committed
5 years ago
1
2
# 勇于挑战的创造师,请运行下面的代码,观察运行结果,和小伙伴们说说你的发现?
a
=
[
'华雄'
]
save project
facae9d4
BellCodeEditor
committed
3 years ago
3
a
.
append
(
"关于"
)
Add new file
c593e827
Administrator
committed
5 years ago
4
5
6
c
=
[
'颜良'
,
'文丑'
]
a
.
extend
(
c
)
print
(
a
)