張瑋珊的學習歷程 - 111-1 大數據分析 - 3填字遊戲

夜四技企資四甲
1101AD017
張瑋珊


歷程檔案 Portfolio

    3填字遊戲

    填字遊戲

    使用者輸入任何字,它可以是名詞、形容詞、動詞、代名詞等。程式得到文字後,可自行排列,組成成一個故事。
    資料來源: https://github.com/ChalzZy/Mad-Libs-Generator/blob/master/Mad_Libs_Generator/main.py

    # Mad Libs Generator - Charles Joseph Monaghan 11/10/2017

    # Loop back to this point once code finishes
    loop = 1

    while (loop < 10):

        # All the questions that the program asks the user
        noun = input("Choose a noun: ")
        p_noun = input("Choose a plural noun: ")
        noun2 = input("Choose a noun: ")
        place = input("Name a place: ")
        adjective = input("Choose an adjective (Describing word): ")
        noun3 = input("Choose a noun: ")

        # Displays the story based on the users input
        print ("------------------------------------------")
        print ("Be kind to your",noun,"- footed", p_noun)
        print ("For a duck may be somebody's", noun2,",")
        print ("Be kind to your",p_noun,"in",place)
        print ("Where the weather is always",adjective,".")
        print ()
        print ("You may think that is this the",noun3,",")
        print ("Well it is.")
        print ("------------------------------------------")

        # Loop back to "loop = 1"
        loop = loop + 1
    全部共 0則留言
    登入帳號密碼代表遵守學術網路規範


    文章分類 Labels


    最新文章 Top10

    中華科技大學數位化學習歷程 - 意見反應