Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson3-5-2_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
eeb91152
authored
May 29, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
2e0274e0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
2 deletions
T.p00y
bug.py
ee.py
po.py
T.p00y
0 → 100644
View file @
eeb91152
steamer={'第一格':'猪八戒'}
steamer['第一格']='唐三藏'
steamer['第二格']='假行者'
steamer['第三格']='沙和尚'
steamer['第四格']='猪八戒'
print(steamer)
print(steamer['第四格'])
\ No newline at end of file
bug.py
View file @
eeb91152
...
...
@@ -2,8 +2,8 @@
import
turtle
screen
=
turtle
.
Screen
()
pen
=
turtle
.
Pen
()
size
=
textinput
(
"提示"
,
"你想要多大的魔法阵呀?"
)
size
=
int
(
s
ize
)
size
=
screen
.
textinput
(
"提示"
,
"你想要多大的魔法阵呀?"
)
size
=
int
(
S
ize
)
pen
.
circle
(
size
)
pen
.
circle
(
size
,
360
,
3
)
pen
.
circle
(
size
,
60
)
...
...
ee.py
0 → 100644
View file @
eeb91152
import
turtle
pen1
=
turtle
.
Pen
()
pen1
.
left
(
45
)
pen1
.
forward
(
100
)
pen1
.
circle
(
50
,
360
)
turtle
.
done
\ No newline at end of file
po.py
0 → 100644
View file @
eeb91152
import
random
j
=
0
k
=
0
l
=
0
for
i
in
range
(
3000
):
x
=
random
.
randint
(
8
,
10
)
if
x
==
8
:
j
=
j
+
1
if
x
==
9
:
k
=
k
+
1
if
x
==
10
:
l
=
l
+
1
print
(
j
,
k
,
l
)
\ 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