Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson2-5_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
785f10e6
authored
4 years ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
b5c6bbbe
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
0 deletions
89.py
99.py
Untitled-1.py.py
diy1.py
89.py
0 → 100644
View file @
785f10e6
import
turtle
*
pencolor
(
red
)
fillcolor
(
blue
)
begin_fill
for
i
in
range
(
5
):
forward
(
100
)
left
(
144
)
end_fill
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
99.py
0 → 100644
View file @
785f10e6
This diff is collapsed.
Click to expand it.
Untitled-1.py.py
0 → 100644
View file @
785f10e6
# 玩家出拳
import
random
c
=
[
'布'
,
'剪刀'
,
'石头'
]
computer
=
random
.
choices
(
c
)
a
=
input
(
'请输入:'
)
print
(
'player:'
+
a
)
print
(
'computer:'
+
computer
)
if
a
in
c
:
if
a
==
computer
:
print
(
'平局'
)
if
(
a
==
'剪刀'
and
computer
==
'布'
)
or
(
a
==
'布'
and
computer
==
'石头'
)
or
(
a
==
'石头'
and
computer
==
'剪刀'
)
:
print
(
'你赢了'
)
if
(
a
==
'布'
and
computer
==
'剪刀'
)
or
(
a
==
'石头'
and
computer
==
'布'
)
or
(
a
==
'剪刀'
and
computer
==
'石头'
)
:
print
(
'你输了'
)
else
:
print
(
'输入错误'
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
diy1.py
0 → 100644
View file @
785f10e6
# 玩家出拳
import
random
a
=
input
(
'请输入:'
)
c1
=
[
'布'
,
'剪刀'
,
'石头'
]
computer
=
str
(
random
.
choice
(
c1
))
print
(
'player:'
,
a
)
print
(
'computer:'
,
computer
)
if
a
in
c1
:
if
a
==
computer
:
print
(
'平局'
)
elif
(
a
==
'布'
and
computer
==
'石头'
)
or
(
a
==
'石头'
and
computer
==
'剪刀'
)
or
(
a
==
'布'
and
computer
==
'石头'
):
print
(
'你赢了'
)
else
:
print
(
'你输了'
)
else
:
print
(
'输入错误'
)
\ No newline at end of file
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