骰子扑克计分系统(功能产生型)

2024-04-26 02:58:52 发布

您现在位置:Python中文网/ 问答频道 /正文

所以在我的编码课上,我们需要做一个“骰子扑克”游戏。我们需要实现一个计分系统,但是我的总是返回一个“None”,因此当我想把累积的分数加到100的基础分数上时会出现问题,因为NoneTypes和integers不能被添加。我知道我需要修复任何导致“无”的问题,但我不确定如何解决。我相信问题可能出在“计分”功能上,但可能更多的是隐藏在函数“骰子游戏”的后面部分(在选择最后一轮或得分输出注释之后)。我对编码很陌生,看了几个小时后,我真的不知道我在看什么了。非常感谢你的帮助!在

基于文本的骰子游戏

from random import randint

def rollFiveDie():

 allDie = []
 for x in range(5):
    allDie.append(randint(1,6))

 return allDie

def outputUpdate(P, F):

  print(P)
  print(F)

def rollSelect():

  rollSelected = input("Which die would you like to re-roll? (Choose 1, 2, 3, 4 and/or 5 from the list)   ")
  print("  ")
  selectList = rollSelected.split()

  return selectList

def rollPicked(toRollList, diceList):

  for i in toRollList:
      diceList[int(i) - 1] = randint(1,6)

def scoring(dList):

  counts = [0] * 7
  for value in dList:
      counts[value] = counts[value] + 1

  if 5 in counts:
      score = "Five of a Kind", 30
  elif 4 in counts:
      score = "Four of a Kind", 25
  elif (3 in counts) and (2 in counts):
      score = "Full House", 15
  elif 3 in counts:
      score = "Three of a Kind", 10
  elif not (2 in counts) and (counts[1] == 0 or counts[6] == 0):
      score = "Straight", 20
  elif counts.count(2) == 2:
      score = "Two Pair", 5
  else:
      score = "Lose", 0

      return score

def numScore(diList):

  counts = [0] * 7
  for v in diList:
    counts[v] = counts[v] + 1

  if 5 in counts:
      finScore = 30
  elif 4 in counts:
      finScore = 25
  elif (3 in counts) and (2 in counts):
      finScore = 15
  elif 3 in counts:
      finScore = 10
  elif not (2 in counts) and (counts[1] == 0 or counts[6] == 0):
      finScore = 20
  elif counts.count(2) == 2:
      finScore = 5
  else:
      finScore = 0

      return finScore

def printScore(fscore):
  print(fscore)
  print("  ")


 def diceGame():

  contPlaying = True
  while contPlaying:

      playPoints = 30

      if playPoints > 9:
          playPoints -= 10

      else:
          print("No more points to spend. Game Over.")
          contPlaying = False

      playing = input("Would you like to play the Dice Game? (Answer 'y' or 'n'):  ")
      print('  ')

      if playing == 'y':

          #First Roll
          fiveDie = rollFiveDie()

          outputUpdate("Your roll is...", fiveDie)

           #Choosing Second Roll/Second Roll execution
          pickDie = input("Which die would you like to re-roll? (Choose 1, 2, 3, 4 and/or 5 from the list)   ")
          print("   ")
          pickDie = pickDie.split()

          rollPicked(pickDie, fiveDie)

          outputUpdate("Your next roll is...", fiveDie)

          #Choosing Last Roll
          pickDie = rollSelect()

          rollPicked(pickDie, fiveDie)

          outputUpdate("Your final roll is...", fiveDie)

          #Scoring output
          scoring(fiveDie)

          finalScore = numScore(fiveDie)

          playPoints += finalScore

          print(playPoints)

      else:

          contPlaying = False
def main():

  diceGame()

main()

Tags: orandinforreturndefscoreprint

热门问题