Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson3-3_DIY1
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
1bd55175
authored
a year ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
a8837a2e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
0 deletions
movePos.py
movePos.py
0 → 100644
View file @
1bd55175
import
turtle
#背景颜色
screen
=
turtle
.
Screen
()
screen
.
bgcolor
(
"light pink"
)
#写字
pen1
=
turtle
.
Pen
()
pen
=
turtle
.
Pen
()
pen
.
penup
()
pen
.
goto
(
100
,
-
100
)
pen
.
write
(
"亲爱的妈妈:
\n
祝您48岁生日快乐!!!
\n
我爱您哦~
\n
——您的宝贝 "
,
font
=
(
"Times"
,
16
,
"normal"
))
pen
.
hideturtle
()
# #画爱心
pen1
.
pencolor
(
"red"
)
pen1
.
pensize
(
5
)
pen1
.
fillcolor
(
"red"
)
pen1
.
begin_fill
()
pen1
.
left
(
45
)
pen1
.
forward
(
100
)
pen1
.
circle
(
50
,
180
)
pen1
.
right
(
90
)
pen1
.
circle
(
50
,
180
)
pen1
.
forward
(
100
)
pen1
.
end_fill
()
pen1
.
hideturtle
()
#draw some balloons
pen2
=
turtle
.
Pen
()
pen2
.
pencolor
(
"black"
)
pen2
.
pensize
(
5
)
pen2
.
penup
()
pen2
.
goto
(
-
170
,
70
)
pen2
.
fillcolor
(
"light blue"
)
pen2
.
begin_fill
()
pen2
.
pendown
()
pen2
.
circle
(
25
)
pen2
.
end_fill
()
pen2
.
right
(
90
)
pen2
.
forward
(
100
)
pen2
.
hideturtle
()
#balloon2
pen3
=
turtle
.
Pen
()
pen3
.
pencolor
(
"black"
)
pen3
.
pensize
(
5
)
pen3
.
penup
()
pen3
.
goto
(
-
120
,
70
)
pen3
.
fillcolor
(
"yellow"
)
pen3
.
begin_fill
()
pen3
.
pendown
()
pen3
.
circle
(
25
)
pen3
.
end_fill
()
pen3
.
right
(
90
)
pen3
.
forward
(
100
)
pen3
.
hideturtle
()
#zhufuyu
pen4
=
turtle
.
Pen
()
pen4
.
penup
()
pen4
.
goto
(
-
380
,
-
160
)
pen4
.
color
(
"purple"
)
pen4
.
write
(
"生日快乐!!! "
,
font
=
(
"Times"
,
50
,
"normal"
))
pen4
.
hideturtle
()
turtle
.
done
()
This diff is collapsed.
Click to expand it.
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