Part 1:
x = first variable
y = second variable
print the variables to the console.
Part 2:
// Replace this with your name, today's date, and a short description.
def main():
x = 'My favorite book is python for dummies.'
y = 'I get to learn a lot about python.'
print(x)
print(y)
if __name__ == "__main__":
main()
Part 3:
The purpose of my program was to express separate string variables and print them separately to the console. Also, I was able to demonstrate how functions work.
My program could be useful for storing values in variables for later. Although quite small, my program expresses how easy functions are to use.
I had trouble setting up my functions properly. To fix this problem, I looked back in our notes.
Next time, I will review our notes before starting the assessment. I will also remember how to properly use functions.