FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
BasePythonE/PythonDraw.py at master · AllenTango/BasePythonE · GitHub
AllenTango
/
BasePythonE
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
BasePythonE
/
PythonDraw.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (18 loc) · 308 Bytes
Breadcrumbs
BasePythonE
/
PythonDraw.py
Copy path
File metadata and controls
20 lines (18 loc) · 308 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Python 蟒蛇绘制 实例
# import 引入库
import
turtle
as
t
t
.
setup
(
650
,
350
,
200
,
200
)
t
.
penup
()
t
.
fd
(
-
250
)
t
.
pendown
()
t
.
pensize
(
25
)
t
.
pencolor
(
"purple"
)
t
.
seth
(
-
40
)
for
i
in
range
(
4
):
t
.
circle
(
40
,
80
)
t
.
circle
(
-
40
,
80
)
t
.
circle
(
40
,
80
/
2
)
t
.
fd
(
40
)
t
.
circle
(
16
,
180
)
t
.
fd
(
40
*
2
/
3
)
t
.
done
()
Back
|
FazBrowse Home
|
New Git URL