This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Part 1 | |
print("List of animals") | |
print("\n") | |
willow = { | |
"Type": "Dog" , | |
"Color": "Black & Brown" , | |
"Nickname": "None" , | |
"Owner's name": "Joe" , | |
} | |
puff = { | |
"Type": "Cat" , | |
"Color": "Grey & Black" , | |
"Nickname": "None" , | |
"Owner's name": "Jules" | |
} | |
for key, value in puff.items(): | |
print(key, ':', value) | |
print("\n") | |
for key, value in willow.items(): | |
print(key, ':', value) | |
print("\n") | |
#Part 2 | |
print("List of citys") | |
print("\n") | |
florida = { | |
'Capital': 'Tallahassee', | |
'The population of Tallahassee is':'192,885 thousand', | |
'Interesting fact': 'The oldest inhabited city in the country resides in Florida.', | |
'Language': 'English', | |
} | |
ohio = { | |
'Capital': 'Columbus', | |
'The population of Columbus is': '889.079 thousand', | |
'Interesting fact': 'Believed to have been the first state to have an African American elected to public office.', | |
'Language': 'English' | |
} | |
texas = { | |
'Capital': 'Austin', | |
'The population of Austin is': '965,872 thousand', | |
'Interesting fact': 'Dr Pepper was invented in Texas in 1885.', | |
'Language': 'English' | |
} | |
england = { | |
'Capital': 'London', | |
'The population of England is': '53.01 million', | |
'Interesting fact': 'The National dish is an Indian food.', | |
'Language': 'English' | |
} | |
france = { | |
'Capital': 'Paris', | |
'The population of France is': '66.9 million', | |
'Interesting fact': 'The Tour de France cycle race has been running for over 100 years.', | |
'Language most spoken': 'French' | |
} | |
belgium = { | |
'Capital': 'Brussels', | |
'The population of Belgium is': '11.35 million', | |
'Interesting fact': 'Belgium produces more than 220,000 tons of chocolate per annum.', | |
'Language most spoken': 'Dutch' | |
} | |
for key, value in florida.items(): | |
print(key, ':' , value) | |
print("\n") | |
for key, value in ohio.items(): | |
print(key, ':', value) | |
print("\n") | |
for key, value in texas.items(): | |
print(key, ':', value) | |
print("\n") | |
for key, value in england.items(): | |
print(key, ':', value) | |
print("\n") | |
for key, value in france.items(): | |
print(key, ':', value) | |
print("\n") | |
for key, value in belgium.items(): | |
print(key, ':', value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while True: | |
pizza_order = { | |
"Customer's name": "", | |
"Pizza size": "small, medium, or large", | |
"Pizza crust": "hand tossed, flat, or orginal", | |
"Toppings": "extra cheese, sausage, or bacon", | |
} | |
pizza_order["Customer's name"] = input("Name? ") | |
print("Please select a size " + pizza_order["Pizza size"]) | |
pizza_order["Pizza size"] = input("What size would you like? ") | |
while True: | |
if pizza_order["Pizza size"] == "small": | |
print("Please select crust " + pizza_order["Pizza crust"]) | |
pizza_order["Pizza crust"] = input("What crust would you like? ") | |
break | |
elif pizza_order["Pizza size"] == "medium": | |
print("Please select crust " + pizza_order["Pizza crust"]) | |
pizza_order["Pizza crust"] = input("What crust would you like? ") | |
break | |
elif pizza_order["Pizza size"] == "large": | |
print("Please select crust " + pizza_order["Pizza crust"]) | |
pizza_order["Pizza crust"] = input("What crust would you like? ") | |
break | |
else: | |
print("Please select only small, medium, or large") | |
pizza_order["Pizza size"] = input("What size would you like? ") | |
while True: | |
if pizza_order["Pizza crust"] == "hand tossed": | |
print("Please select toppings " + pizza_order["Toppings"]) | |
pizza_order["Toppings"] = input("what toppings would you like? ") | |
break | |
elif pizza_order["Pizza crust"] == "flat": | |
print("Please select toppings " + pizza_order["Toppings"]) | |
pizza_order["Toppings"] = input("what toppings would you like? ") | |
break | |
elif pizza_order["Pizza crust"] == "original": | |
print("Please select toppings " + pizza_order["Toppings"]) | |
pizza_order["Toppings"] = input("what toppings would you like? ") | |
break | |
else: | |
print("Please select only hand tossed, flat, or orginal") | |
pizza_order["Pizza crust"] = input("What crust would you like? ") | |
while True: | |
if pizza_order["Toppings"] == "extra cheese": | |
break | |
elif pizza_order["Toppings"] == "sausage": | |
break | |
elif pizza_order["Toppings"] == "bacon": | |
break | |
else: | |
print("Please select only extra cheese, sausage, or bacon") | |
pizza_order["Toppings"] = input("what toppings would you like? ") | |
print("\n") | |
print("Thank you for your order, " + pizza_order["Customer's name"]) | |
print("You have orderd a " + pizza_order["Pizza size"] + ", " + pizza_order["Pizza crust"] + " with the following toppings: " + pizza_order["Toppings"]) | |
print("\n") | |
print("Would you like to make another order?") | |
new_order = input("yes or no: ") | |
if new_order == "yes": | |
print("ok") | |
elif new_order == "y": | |
print("ok") | |
else: | |
print("goodbye " + pizza_order["Customer's name"]) | |
break |