#Naama's chocolate program #lessons 1-7 import random recipeN="chocolate" print "Find a recipe with your favorite chocolate!" favorite=raw_input("What is the best kind of chocolate?") absolute=favorite while favorite!= "dark" and favorite!="dark chocolate": if "milk" in favorite: print "Not really... try again!" elif "white" in favorite: print favorite, "isn't even chocolate!" else: print "No! Try again!" favorite=raw_input("What is the best kind of chocolate?") print "you are right!", favorite, "is the best!!" time=input("Do you have an hour or more? Enter 1 for less, or 2 for more") dark60="Dark chocolate cake. Here is the link! http://www.food.com/recipe/dark-chocolate-cake-2496" dark120="Dark chocolate cupcakes. Here is the link! http://www.bettycrocker.com/recipes/dark-chocolate-cupcakes/5fdeddad-2b8f-48aa-8e7e-faba07ea0aca" dark90="Dark chocolate and orange cake. Here is the link!http://www.bbcgoodfood.com/recipes/1356/dark-chocolate-and-orange-cake" dark5="Deep dark chocolate cake. Here is the link!http://www.cooks.com/recipe/gb1gy316/hersheys-5-minute-recipe-deep-dark-chocolate-cake.html" dark13="Dark microwave cake. Here is the link!http://www.bbcgoodfood.com/recipes/1977663/microwave-chocolate-cake" dark6="Dark chocolate mug cake. Here is the link!http://www.instructables.com/id/5-minute-Chocolate-Cake/" milk70="Milk chocolate tart. Here is the link!http://www.foodnetwork.co.uk/recipes/milk-chocolate-tart.html" milk80="Pistachio and milk chocolate squares. Here is the link!http://www.bbcgoodfood.com/recipes/1161643/pistachio-and-milk-chocolate-squares" milkdark105="Chocolate chip cookies. Here is the link! http://www.marthastewart.com/313548/ultimate-chocolate-chip-cookies" milk200="Milk chococlate cake with fudge and buttercream. Here is the link! http://www.chow.com/recipes/30481-chocolate-cake-with-whipped-fudge-filling-and-chocolate-buttercream" milk120="Almond butter and milk chocolate toffee. Here is the link!http://www.chow.com/recipes/30785-milk-chocolate-buttercream" milk20="Milk chocolate marshmallow fudge. Here is the link! http://www.bbc.co.uk/food/recipes/chocolate_marshmallow_14263" milk19="Milk chocolate almond candy. Here is the link!https://www.verybestbaking.com/recipes/30325/milk-chocolate-almond-brickle/" milk5="Milk chocolate mosse. Here is the link!http://cafefernando.com/the-best-chocolate-mousse-of-your-life-under-5-minutes/" white20="White chocolate chip cookies. Here is the link!https://www.verybestbaking.com/recipes/18479/white-chip-chocolate-cookies/" white630="White chocolate cheesecake. Here is the link!http://allrecipes.com/recipe/white-chocolate-cheesecake-with-white-chocolate-brandy-sauce/" white80="White chocolate mosse. Here is the link!http://www.foodnetwork.com/recipes/claire-robinson/white-chocolate-mousse-recipe.html" white420="White chocolate cheesecake. Here is the link!http://www.kraftrecipes.com/recipes/white-chocolate-cheesecake-51349.aspx" white525="White chocolate pumpkin cake. Here is the link!http://www.canadianliving.com/food/pumpkin_cheesecake_with_white_chocolate_almond_bark.php" white5="Homemade white chocolate. Here is the link!http://www.cupcakeproject.com/2011/07/how-to-make-white-chocolate-in-less.html" white70="White chocolate cookies n' cream. Here is the link!http://www.myrecipes.com/recipe/white-chocolate-cookies-n-cream-fudge" #dark if time==1 and "dark" in absolute: recipe=random.randrange(4)+1 if recipe==1: recipeN=dark60 elif recipe==2: recipeN=dark5 elif recipe==3: recipeN=dark6 elif recipe==4: recipeN=dark13 elif time==2 and "dark" in absolute: recipe=random.randrange(4)+1 if recipe==1: recipeN=dark120 elif recipe==2: recipeN=dark60 elif recipe==3: recipeN=dark90 elif recipe==4: recipeN=milkdark105 #milk elif time==1 and "milk" in absolute: recipe=random.randrange(3)+1 if recipe==1: recipeN=milk19 elif recipe==2: recipeN=milk20 elif recipe==3: recipeN=milk5 elif time==2 and "milk" in absolute: recipe=random.randrange(5)+1 if recipe==1: recipeN=milkdark105 elif recipe==2: recipeN=milk120 elif recipe==3: recipeN=milk200 elif recipe==4: recipeN=milk70 elif recipe==5: recipeN=milk80 #white elif time==2 and "white" in absolute: recipe=random.randrange(5)+1 if recipe==1: recipeN=white420 elif recipe==2: recipeN=white525 elif recipe==3: recipeN= white70 elif recipe==4: recipeN= white80 elif recipe==5: recipeN=white630 elif time==1 and "white" in absolute: recipe=random.randrange(2)+1 if recipe==1: recipeN=white20 elif recipe==2: recipeN=white5 else: print "something is wrong! restart please!!" print "You should try the ", recipeN for c in range (3): print "Try it!"
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question