You are on page 1of 1

Instructions to make scramble eggs

So due to the Python class I’m taking I decided to do a program


with steps just as a basic challenge and confirmed it worked
through Pycharm

# Name: Joseph Bernardo


# Assignment: Cooking those Scrambled eggs
# Description: Program that shows how to cook Scrambled eggs by step
# Revision Date Initials Description of Changes
# 1.0 10/17/20 JB Initial version
# 1.1 10/17/20 JB Confirmed program works properly

def main():
# My program showing how to make eggs and to just press the enter button
for each step to appear
print("Hello and welcome to my introduction on how to make scramble
eggs!")

input("Press enter to continue")


print("First you have to buy eggs")
input()
print("Next crack the eggs")
input()
print("Beat the eggs")
input()
print("Turn on the stove")
input()
print("Grab a pan")
input()
print("Oil the pan or use butter")
input()
print("Cook eggs on the pan over the stove occasionally turning them over
to scramble until done")
input()
print("Transport cooked scrambled eggs to plate")
input()
print("Add pepper")
input()
print("Ready to serve")

if __name__ == '__main__':
main()

You might also like