0% found this document useful (0 votes)
30 views1 page

Making Tea with Python Instructions

The document provides a step-by-step guide on how to make tea, depending on whether the user has a tea bag or not. If the user has a tea bag, it outlines the steps for using it; if not, it details how to make tea using loose tea leaves. The document concludes with a thank you message.

Uploaded by

cyber.boyr2010
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views1 page

Making Tea with Python Instructions

The document provides a step-by-step guide on how to make tea, depending on whether the user has a tea bag or not. If the user has a tea bag, it outlines the steps for using it; if not, it details how to make tea using loose tea leaves. The document concludes with a thank you message.

Uploaded by

cyber.boyr2010
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

a=print("Welcome "*3)

b=print("Welcome to our Website")


c=print("Here you can learn how to make Tea")
d=print("Please folllow the following steps to make a Tea")
e=input("Frist do you have a tea bag or not:")
if e=="yes":
print("ok")
print("Step 1: Put the teabag in a cup.")
print("Step 2: Fill the kettle with water.")
print("Step 3: Boil the water in the kettle.")
print("Step 4: Pour some of the boiled water into the cup.")
print("Step 5: Add milk to the cup.")
print("Step 6: Add sugar to the cup.")
print("Step 7: Stir the tea.")
print("Step 8: Enjoy drinking the tea.")
else:
print("ok")
print("Step 1: Place the fresh water in a saucepan or a kettle.")
print("Step 2: Boil the water to match your style of tea.")
print("Step 3: Put the black tea leaves in that pot")
print("Step 4: After that add some milk into that pot.")
print("Step 5: Add some sugar.")
print("Step 6: Boil for some time.")
print("Step 7: Pour it in a cup.")
print("Step 8: Enjoy drinking the tea.")

f=print("Thank you")

You might also like