Write an if-elif-else chain that determines a person’s stage of life. a) Set your age for the variable age. b) If the age is less than 0, print an error message, invalid age. c) If the age is less than 2 years old, print a message, you're a baby. d) If the age is at least 2 years old but less than 4, print a message, you're a toddler. e) If the age is at least 4 years old but less than 13, print a message, you're a kid. f) If the age is at least 13 years old but less than 20, print a message, you're a teenager. g) If the age is at least 20 years old but less than 65, print a message, you're an adult. h) If the age is 65 or older, print a message, you're an elder. Example Output Age 20 You're an adult.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

need help with python

**Exercise 2: Age-Based Stage of Life Classification**

Objective: Write an `if-elif-else` chain to categorize a person’s life stage based on their age.

Instructions:

a) Assign your age to the variable `age`.

b) If `age` is less than 0, display an error message: "invalid age."

c) If `age` is less than 2 years, display: "you’re a baby."

d) If `age` is between 2 years (inclusive) and 4 years, display: "you’re a toddler."

e) If `age` is between 4 years (inclusive) and 13 years, display: "you’re a kid."

f) If `age` is between 13 years (inclusive) and 20 years, display: "you’re a teenager."

g) If `age` is between 20 years (inclusive) and 65 years, display: "you’re an adult."

h) If `age` is 65 years or older, display: "you’re an elder."

**Example Output:**

- Input: `Age = 20`
- Output: "You’re an adult."

Note: This exercise helps in understanding conditional statements in programming by categorizing age ranges into specific life stages.
Transcribed Image Text:**Exercise 2: Age-Based Stage of Life Classification** Objective: Write an `if-elif-else` chain to categorize a person’s life stage based on their age. Instructions: a) Assign your age to the variable `age`. b) If `age` is less than 0, display an error message: "invalid age." c) If `age` is less than 2 years, display: "you’re a baby." d) If `age` is between 2 years (inclusive) and 4 years, display: "you’re a toddler." e) If `age` is between 4 years (inclusive) and 13 years, display: "you’re a kid." f) If `age` is between 13 years (inclusive) and 20 years, display: "you’re a teenager." g) If `age` is between 20 years (inclusive) and 65 years, display: "you’re an adult." h) If `age` is 65 years or older, display: "you’re an elder." **Example Output:** - Input: `Age = 20` - Output: "You’re an adult." Note: This exercise helps in understanding conditional statements in programming by categorizing age ranges into specific life stages.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education