Mini-project # 1 - Rock-paper-scissors-lizard-Spock

An Introduction to Interactive Programming in Python 这周的mini project作业,花了我很长时间,暂时在这里留个备份


Mini-project description — Rock-paper-scissors-lizard-Spock

Rock-paper-scissors is a hand game that is played by two people. The players count to three in unison and simultaneously &ldqup;throw” one of three hand signals that correspond to rock, paper or scissors. The winner is determined by the rules:

  • Rock smashes scissors
  • Scissors cuts paper
  • Paper covers rock

Rock-paper-scissors is a surprisingly popular game that many people play seriously (see the Wikipedia article for details). Due to the fact that a tie happens around 1/3 of the time, several variants of Rock-Paper-Scissors exist that include more choices to make ties more unlikely.

Rock-paper-scissors-lizard-Spock (RPSLS) is a variant of Rock-paper-scissors that allows five choices. Each choice wins against two other choices, loses against two other choices and ties against itself. Much of RPSLS's popularity is that it has been featured in 3 episodes of the TV series "The Big Bang Theory". The Wikipedia entry for RPSLS gives the complete description of the details of the game.

In our first mini-project, we will build a Python function rpsls(name) that takes as input the string name, which is one of "rock""paper","scissors""lizard", or "Spock". The function then simulates playing a round of Rock-paper-scissors-lizard-Spock by generating its own random choice from these alternatives and then determining the winner using a simple rule that we will next describe.

While Rock-paper-scissor-lizard-Spock has a set of ten rules that logically determine who wins a round of RPSLS, coding up these rules would require a large number (5x5=25) of if/elif/else clauses in your mini-project code. A simpler method for determining the winner is to assign each of the five choices a number:

  • 0 — rock
  • 1 — Spock
  • 2 — paper
  • 3 — lizard
  • 4 — scissors

In this expanded list, each choice wins against the preceding two choices and loses against the following two choices. In all of the mini-projects for this class, I will provide a walk through of the steps involved in building your project to aid its development. A template for your mini-project is available here. Please work from this template.

Mini-project development process

  1. Build a helper function name_to_number(name) that converts the string name into a number between 0 and 4 as described above. This function should use a sequence of if/elif/else clauses. You can use conditions of the form name == 'paper', etc. to distinguish the cases.To make debugging your code easier, we suggest including a final else clause that catches cases when name does not match any of the five correct input strings and prints an appropriate error message.
  2. Next, you should build a second helper function number_to_name(num) that converts a number in the range 0 to 4 into its corresponding name as a string. Again, we suggest including a final else clause that catches cases when number is not in the correct range.
  3. Build the first part of the main function rpsls(name) that converts name into the number player_number between 0 and 4 using the helper function name_to_number.
  4. Build the second part of rpsls(name) that generates a random number comp_number between 0 and 4 using the function random.randrange(). I suggest experimenting with randrange in a separate CodeSkulptor window before deciding on how to call it to make sure that you do not accidently generate numbers in the wrong range.
  5. Build the last part of rpsls(name) that determines and prints out the winner. This test is actually very simple if you use the remainder operation (% in Python) to the difference between comp_number and player_number. If this is not immediately obvious to you, I would suggest reviewing the "More operations"  and "RPSLS" videos on remainders and modular arithmetic as well as experimenting with the remainder operator % in a separate CodeSkulptor window to understand its behavior.
  6. Using the helper function number_to_name, you should produce four print statements; print a blank line, print out the player's choice, print out the computer's choice and print out the winner.

This will be the only mini-project in the class that is not an interactive game. Since we have not yet learned enough to allow you to play the game interactively, you will simply call your rpsls function repeatedly in the program with different player choices. You will see that we have provided five such calls at the bottom of the template. Running your program repeatedly should generate different computer guesses and different winners each time. While you are testing, feel free to modify those calls, but make sure they are restored when you hand in your mini-project, as your peer assessors will expect them to be there.

The output of running your program should have the following form:

Player chooses rock
Computer chooses scissors
Player wins!

Player chooses Spock
Computer chooses lizard
Computer wins!

Player chooses paper
Computer chooses lizard
Computer wins!

Player chooses lizard
Computer chooses scissors
Computer wins!

Player chooses scissors
Computer chooses Spock
Computer wins!

Note that, for this initial mini-project, we will focus only on testing whether your implementation of rpsls() works correctly on valid input.

Grading rubric — 18 pts total (scaled to 100 pts)

Your peers will assess your mini-project according to the rubric given below. To guide you in determining whether your project satisfies each item in the rubric, please consult the video that demonstrates our implementation of "Rock-paper-scissors-lizard-Spock". Small deviations from the textual output of our implementation are fine. You should avoid large deviations (such as using the Python function input to input your guesses). Whether moderate deviations satisfy an item of the grading rubric is at your peers' discretion during their assessment.

Here is a break down of the scoring:

  • 2 pts — A valid CodeSkulptor URL was submitted. Give no credit if solution code was pasted into the submission field. Give 1 pt if an invalid CodeSkulptor URL was submitted.
  • 2 pts — Program implements the function rpsls() and the helper function name_to_number() with plausible code. Give partial credit of 1 pt if only the function rpsls() has plausible code.
  • 1 pt — Running program does not throw an error.
  • 1 pt — Program prints blank lines between games.
  • 2 pts — Program prints "Player chooses player_guess" where player_guess is a string of the form "rock""paper""scissors","lizard" or "Spock". Give 1 pt if program prints out number instead of string.
  • 2 pts — Program prints "Computer chooses computer_guess" where computer_guess is a string of the form "rock", "paper", "scissors", "lizard" or "Spock". Give 1 pt if program prints out number instead of string.
  • 1 pt — Computer's guesses vary between five calls to rpsls() in each run of the program.
  • 1 pt — Computer's guesses vary between runs of the program.
  • 3 pts — Program prints either "Player and computer tie!""Player wins!" or "Computer wins!" to report outcome. (1 pt for each message.)
  • 3 pts — Program chooses correct winner according to RPSLS rules. Please manually examine 5 cases for correctness. If all five cases are correct, award 3 pts; four cases correct award 2 pts; one to three cases correct award 1 pt; no cases correct award 0 pts.


[python]  view plain copy
  1. # Rock-paper-scissors-lizard-Spock template  
  2.   
  3.   
  4. # The key idea of this program is to equate the strings  
  5. # "rock", "paper", "scissors", "lizard", "Spock" to numbers  
  6. # as follows:  
  7. #  
  8. # 0 - rock  
  9. # 1 - Spock  
  10. # 2 - paper  
  11. # 3 - lizard  
  12. # 4 - scissors  
  13.   
  14. # helper functions  
  15.   
  16. import random  
  17.   
  18. def number_to_name(number):  
  19.     # fill in your code below  
  20.       
  21.     # convert number to a name using if/elif/else  
  22.     # don't forget to return the result!  
  23.     if number == 0:  
  24.         return "rock"  
  25.     elif number == 1:  
  26.         return "Spock"  
  27.     elif number == 2:  
  28.         return "paper"  
  29.     elif number == 3:  
  30.         return "lizard"  
  31.     elif number == 4:  
  32.         return "scissors"  
  33.     else:  
  34.         print "Oops, Number is not in the correct range."  
  35.   
  36.   
  37.       
  38. def name_to_number(name):  
  39.     # fill in your code below  
  40.   
  41.     # convert name to number using if/elif/else  
  42.     # don't forget to return the result!  
  43.     if name == "rock":  
  44.         return 0  
  45.     elif name == "Spock":  
  46.         return 1  
  47.     elif name == "paper":  
  48.         return 2  
  49.     elif name == "lizard":  
  50.         return 3  
  51.     elif name == "scissors":  
  52.         return 4  
  53.     else:  
  54.         print "Oops, Name does not match."  
  55.       
  56.   
  57. def rpsls(name):   
  58.     # fill in your code below  
  59.   
  60.     # convert name to player_number using name_to_number  
  61.       
  62.     player_number = name_to_number(name)  
  63.       
  64.     # compute random guess for comp_number using random.randrange()  
  65.   
  66.     comp_number = random.randrange(05)  
  67.       
  68.     # compute difference of player_number and comp_number modulo five  
  69.   
  70.     a = ( player_number - comp_number ) % 5  
  71.       
  72.     # use if/elif/else to determine winner  
  73.       
  74.     if a == 0:  
  75.         results = "Player and Computer tie!"  
  76.     elif a == 1 or a == 2:  
  77.         results = "Player wins!"  
  78.     elif a == 3 or a == 4:  
  79.         results = "Computer wins!"  
  80.   
  81.   
  82.     # convert comp_number to name using number_to_name  
  83.       
  84.     comp_name = number_to_name (comp_number)  
  85.       
  86.     # print results  
  87.       
  88.     print "Player chooses " + str(name)  
  89.     print "Computer chooses " + str(comp_name)  
  90.     print results  
  91.     print ""  
  92.   
  93.   
  94.       
  95.       
  96. # test your code  
  97. rpsls("rock")  
  98. rpsls("Spock")  
  99. rpsls("paper")  
  100. rpsls("lizard")  
  101. rpsls("scissors")  
  102.   
  103. # always remember to check your completed program against the grading rubric  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值