Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

bellcode / lesson2-3-1_DIY1

  • This project
    • Loading...
  • Sign in
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 8dd80298 authored 3 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent 03262e08
Hide whitespace changes
Inline Side-by-side
Showing with 11 additions and 8 deletions
  • diy1.py
diy1.py
View file @ 8dd80298
...@@ -2,11 +2,14 @@ import random ...@@ -2,11 +2,14 @@ import random
list = ["石头","剪刀","布"] list = ["石头","剪刀","布"]
player = input("你要出什么:") player = input("你要出什么:")
print("玩家出"+player) print("玩家出"+player)
robot = random.choice(list) if player in list:
print("电脑出"+robot) robot = random.choice(list)
if player==robot: print("电脑出"+robot)
print("平局") if player==robot:
elif (player == "石头" and robot == "剪刀")or(player == "剪刀" and robot == "布")or(player == "布" and robot == "石头"): print("平局")
print("玩家胜利") elif (player == "石头" and robot == "剪刀")or(player == "剪刀" and robot == "布")or(player == "布" and robot == "石头"):
print("玩家胜利")
else:
print("电脑胜利")
else: else:
print("电脑胜利") print("你个肮脏的作弊者")
\ No newline at end of file \ No newline at end of file
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment