Question: I got the first part figured out! However, the second part got me confused. Thank you for your help! 1 1. Python IPO and Selection
I got the first part figured out! However, the second part got me confused. Thank you for your help!
1 1. Python IPO and Selection statements In the following code cell, write a python statement that will ask the user for two numbers. Then take the first number to the power of the second number and display the answer (for example if the number 5 was given as the first number and the number 3 was given as the second number, the output would give 125). Remember that the syntax for receiving input into a variable in python can be done as follows: variable_a input() [3]: num1 = int(input("Enter the first number: ")) num2 = int(input("Enter the second number: ")) pow = num1**num2 print("The answer is", pow) Enter the first number: 3 Enter the second number: 2 The answer is 9 In the following code cell, write the python code to ask for the sum of the previous two numbers that were given by the user in the previous cell. Use the actual numbers when displaying the question (these numbers should not be hardcoded). If the user enters the correct answer display a message saying that they answered correctly, otherwise, display a message saying that they answered incorrectly. [ ]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
