【python】Word Jumble

來源:互聯網
上載者:User

標籤:python   word-jumble   

By dolphin,20150730

Title :

    改進Word Jumble,給各個單詞加上一個提示。讓玩家在遇到困難時能夠看到提示。添加一個記分系統,對那些不用提示就把問題解決掉的玩家進行獎勵。


Code:

# Word Jumble## Computer random chosse a word, and disturb it# The player must guess the word.import randomWORDS = ("python",         "jumble",     "easy",     "difficult",     "elephant",     "iphone",     "Dolphin")word = random.choice(WORDS)correct = wordscore = 0tips = 0# Creat a disturb word jumble = ""while word:position = random.randrange(len(word))jumble += word[position]word = word[:position] + word[(position + 1 ):]# Play gameprint("""Welcome to Word Jumble !Unscramble the letters to make a word.(Press the enter key at the prompt to quit .)""")print("\nThe jumble is : ",jumble)print("\n Press h to get the tips.")# Get answerguess = input("\n Your guess:")# Get Tipswhile guess != correct and guess != "":if guess == ‘h‘:if correct == ‘python‘:print("A computer langue !")elif correct == ‘jumble‘:print("A word puzzle with a clue.")elif correct == ‘easy‘:print("Opposite word is difficult !")elif correct == ‘difficult‘:print("Opposite word is easy !")elif correct == ‘elephant‘:print("A very large animal with a long, flexible nose.")elif correct == ‘iphone‘:print("A mobile phone.")else :print("It is me ")guess = input("Guess again: ")tips = 1else:print("Sorry , that is not it.")guess = input("Guess again: ")# Get Scoreif tips == 1 :score = 50;if tips == 0 :score = 100;# resultif guess == correct:print("\nYeah! That‘s it ! You guessed it !\n")print("Your score is ",score)print("\nThanks for playing ! ")input("\n\nPress the enter key to exit !")


本文出自 “西伯利亞狼026” 部落格,請務必保留此出處http://1429223.blog.51cto.com/1419223/1680191

【python】Word Jumble

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.