Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started