2017-10-16 106 views
0

每當你運行遊戲並開始猜測它首先詢問什麼是猜測#0?我試圖讓它顯示「什麼是猜測#1?」但。同時保持猜測的數量等於猜測的數量(如果有意義的話)。這是我的代碼到目前爲止:試圖獲得嘗試從1開始而不是0的嘗試次數

import random 

def play_game(name, lower=1, upper=10): 
    secret = random.randint(lower, upper) 
    tries = 0 

    print("-----------------------------\n" 
      "Welcome, {}!\n" 
      "I am thinking of a number\n" 
      "between {} and {}.\n" 
      "Let's see how many times it\n" 
      "will take you to guess!\n" 
      "-----------------------------".format(name, lower, upper)) 

    # Main loop 
    guessing_numbers = True 
    while guessing_numbers: 
     guess = input("What is guess #{}?\n".format(tries)) 


     while not guess.isdigit(): 
      print("[!] Sorry, that isn't a valid input.\n" 
        "[!] Please only enter numbers.\n") 
      guess = input("What is guess #{}?\n".format(tries)) 

     guess = int(guess) 
     tries += 1 

     if guess < secret: 
      print("Too low. Try again!") 
     elif guess > secret: 
      print("Too high. Try again!") 
     else: 
      guessing_numbers = False 

    if tries == 1: 
     guess_form = "guess" 
    else: 
     guess_form = "guesses" 

    print("--------------------------\n" 
      "Congratulations, {}!\n" 
      "You got it in {} {}!\n" 
      "--------------------------\n".format(name,tries,guess_form)) 

    if tries < 3: 
     # Randomly chooses from an item in the list 
     tries_3 = ["Awesome job!","Bravo!","You rock!"] 
     print (random.choice(tries_3)) 
     # --- 
    elif tries < 5: 
     tries_5 = ["Hmmmmmpff...","Better luck next time.","Ohhh c'mon!  You can do better than that."] 
     print (random.choice(tries_5)) 
    elif tries < 7: 
     tries_7 = ["You better find something else to do..","You can do better!","Maybe next time..."] 
     print (random.choice(tries_7)) 
    else: 
     tries_8 = ["You should be embarrassed!","My dog could do better. Smh...","Even I can do better.."] 
     print (random.choice(tries_8)) 

    choice = input("Would you like to play again? Y/N?\n") 
    if "y" in choice.lower(): 
     return True 
    else: 
     return False 

def main(): 
    name = input("What is your name?\n") 
    playing = True 
    while playing: 
     playing = play_game(name) 


if __name__ == "__main__": 
    main() 

我有「嘗試」的數目設置爲0在開始。然而,如果我將它設置爲1,那麼玩遊戲,它只需要我3次嘗試,它會顯示,它花了我4次嘗試。所以我不知道該怎麼做。 python仍然有點新,所以我會喜歡一些幫助

+0

那麼,爲什麼不改變顯示方式呢? '.format(試試+ 1)' –

+0

可以工作。謝謝!! –

回答

1

任何地方你有input("What is guess #{}?\n".format(tries)),使用guess = input("What is guess #{}?\n".format(tries+1))。 (在表達式中增加+1來嘗試表達式,但不能改變變量本身)