Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson2-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
85e4b26e
authored
a year ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
25abb509
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
diy1.py
diy1.py
View file @
85e4b26e
player
=
input
(
"请出拳:石头/剪刀/布"
)
# 玩家出拳
print
(
"玩家出拳:"
+
player
)
\ No newline at end of file
n
=
int
(
input
(
'输入一个正整数N:'
))
ren
=
list
(
range
(
1
,
n
+
1
))
count
=
0
while
len
(
ren
)
>
1
:
new_ren
=
ren
[:]
# 把原列表拷贝到新列表中,用于限制循环的次数
# 开始报数
for
i
in
range
(
0
,
len
(
new_ren
)):
# 从第一个人开始报数
count
=
count
+
1
# 每报一次,计数器+1
if
count
%
3
==
0
:
ren
.
remove
(
new_ren
[
i
])
print
(
'{}'
.
format
(
ren
[
0
]))
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