You are on page 1of 2

BAND NAME GENERATOR

print("Welcome to the band name generator!")


city=input("In which city you are living in?\n")
pet_name=input("What is your pet's name?\n")
print(“Your band name is ”+city+" "+pet_name)
# https://replit.com/@appbrewery/band-name-generator-end
OUTPUT:
Welcome to the band name generator!
In which city you are living in?
chennai
What is your pet's name?
Doggy
Your band name is chennai doggy

PIZZA ORDER
print("Welcome to Python Pizza Deliveries!")
size = input("What size pizza do you want? S, M, or L ")
add_pepperoni = input("Do you want pepperoni? Y or N ")
extra_cheese = input("Do you want extra cheese? Y or N ")
bill = 0
if size == "S":
bill = 15
if add_pepperoni == "Y":
bill += 2
if extra_cheese == "Y":
bill +=1
elif size == "M":
bill = 20
if add_pepperoni == "Y":
bill += 3
if extra_cheese == "Y":
bill +=1
else:
bill = 25
if add_pepperoni == "Y":
bill += 3
if extra_cheese == "Y":
bill +=1
print(f"Your final bill is: ${bill}")

You might also like