如何用 PYTHON制作填詞游戲
新建一個PYTHON文檔。用JUPYTER NOTEBOOK打開即可。
print("Heart is " + color) print(noun + " are red") print("I like " + food)
我們首先確定一下填詞的大概方向。
color = input("Please enter a color: ") noun = input("Please enter a noun: ") food = input("Please enter a food: ") print("Heart is " + color) print(noun + " are red") print("I like " + food)
每個填詞的內(nèi)容用INPUT來導入。
嘗試測試并且填寫內(nèi)容看看效果。
color = input("Please enter a color: ") noun = input("Please enter a noun: ") food = input("Please enter a food: ") print("Heart is " + color) print(noun + " are red") print("I like " + food)
如果我們要填寫數(shù)字也是可以的,只不過數(shù)字是字符串。
color = int(input("Please enter a color: ")) noun = int(input("Please enter a noun: ")) food = int(input("Please enter a food: ")) print("Heart is " + color) print(noun + " are red") print("I like " + food)
如果定義為整型的話,字符串就不能填進去了。
以上就是關于用PY制作一個填詞游戲的具體代碼和實例內(nèi)容,感謝大家的學習和對腳本之家的支持。
更多文章、技術交流、商務合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯(lián)系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
