Question: Pyton Coding: How do I print all three? Instructions Program produces proper output given input 3.33 out of 10.00 Write and test a program that

Instructions Program produces proper output given input 3.33 out of 10.00 Write and test a program that accepts the user's name (as text) and age (as a number) as input. 1 out of 3 checks passed. Review the results below for more details. The program should output a sentence containing the user's name Checks and age. Test Case Incomplete Test for Alex, 23yrs An example of the program input and output is shown below: Test Case Complete Test for John, 44yrs Enter your name: Alex Enter your age: 23 > Test Case Incomplete Test for Debbie, 78yrs Alex is 23 years old. myinfo.py + 1 name = input("Enter your name: Alex ") 2 age = int(input("Enter your age: 23 ")) 3 print(" " + name + " is", age, "years old.") ME
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
