+ Expand Code
# Prompt user for values for each of the variables
# (b1, b2, _a, _b, _c, _d, and _e) and store said 
# value into the variable (see sample output)







    .........
		
Your task, then, is to follow the directions in the comments in order to make changes to the code that will result in the desired output being printed to the screen.
  1. Write the code to prompt the user for input and store the provided information (converted to the correct type, if needed) in variables with the given names.
  2. Write the print statements that print the expression itself and whether it is True or False.
  3. Write the simple if and if/else statements
  4. Write the nested if/else statements
Some of the instructions in the comments are frequently misinterpreted, so make certain that you are present in class to receive the detailed explanations that I intend to give in class!

Note that because b1 and b2 are being assigned True or False based on user input, while the other variables are also being assigned user-specified int and/or float values, the output will look different each time you run the program. To this end, I have provided multiple examples of how the output could look.

Note also that some parts of the sample output are blacked out like this: __________ This is because you are being asked to write the boolean expression twice -- once as part of the output string text and once to actually be evaluated as True or False. The blacked out portions are just to avoid giving away the answer in the sample output.

Program output examples:

+ Expand Output
What is the value of b1? True
What is the value of b2? False
What is the value of _a? 10 
...
		
+ Expand Output
What is the value of b1? False
What is the value of b2? True
What is the value of _a? 78
...
		
+ Expand Output
What is the value of b1? False
What is the value of b2? False
What is the value of _a? 65
...
		
In at least 150 words, please address the following questions in memo.txt:
  1. How did the process of creating these programs go for you?
  2. What were your main challenges and how did you overcome them?
  3. What did you learn that may be of use as you move along in this class?