Python basic tutorial-stone scissors cloth game example

Source: Internet
Author: User

The following are rules. When you and your opponent make specific gestures at the same time, they must be the following gestures: Stone, scissors, Cloth.
This rule is a paradox.
(A) cloth bag stone.
(B) Rock Cutting,
(C) Cut the cloth. In your computer version, the user enters her/his options, the computer finds a random option, and then you
The best algorithm is to use as few if statements as possible.

Copy codeThe Code is as follows:
# Coding: UTF-8

Import random
Guess_list = ["Stone", "Scissors", "cloth"]
Guize = [["cloth", "Stone"], ["Stone", "Scissors"], ["Scissors", "cloth"]

While True:
Computer = random. choice (guess_list)
People = input ('enter stone, scissors, cloth \ n'). strip ()

If people not in guess_list:
People = input ('Re-Enter: Stone, scissors, cloth \ n'). strip ()
Continue
If computer = people:
Print ("flat, play again! ")

Elif [computer, people] in guize:
Print ("Computer wins! ")
Else:
Print ("win! ")
Break

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.