Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson6-2
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
Commit
916f3f5b
authored
May 12, 2021
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
e6f69193
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
11 deletions
diy.py
diy.py
View file @
916f3f5b
# 温酒斩华雄上
goto
(
0
,
160
)
#移到(0,160)
# 注意从现在开始,字符串用单引号咯
setcostume
(
"向下"
)
# 和你的小伙伴用列表讲讲温酒斩华雄的故事,上半集,并完成下面的挑战:
setheading
(
180
)
#面朝下
a
=
[
'华雄'
]
slipto
(
1
,
0
,
100
)
#这时还是无名小卒的关羽上前请战,请从b列表中删掉“关羽”,用三种方法哦。
direction
=
"down"
b
=
[
'袁术'
,
'夏侯惇'
,
'曹操'
,
'关羽'
]
while
True
:
b
.
remove
(
'关羽'
)
if
iskeydown
(
"left"
):
#按下向左键
print
(
b
)
direction
=
"left"
#方向变为向左"left"
b
.
pop
(
'关羽'
)
setcostume
(
"向左"
)
print
(
b
)
if
iskeydown
(
"right"
):
#按下向右键
\ No newline at end of file
direction
=
"right"
#方向变为向左"left"
setcostume
(
"向右"
)
#方向变为向右"right"
if
iskeydown
(
"down"
):
#按下向下键
direction
=
"down"
#方向变为向下"down"
setcostume
(
"向下"
)
if
direction
==
"left"
:
#当方向变为"left"时
setheading
(
-
135
)
#滑雪者面向-135°方向
changex
(
5
)
#改变x坐标,注意正负号,具体值可通过运行效果来定~
if
direction
==
"right"
:
#当方向变为"right"时
setheading
(
135
)
#滑雪者该面向哪个方向呢?
changex
(
-
5
)
#改变x坐标,注意正负号,具体值可通过运行效果来定~
if
direction
==
"down"
:
setheading
(
180
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment