61.6k views
3 votes
Write a program using a nested if decision structure. The first question you'll ask the user is whether they like music. The second question you'll ask is whether they like to read. After asking both questions, one of four messages will be displayed:

1. You like music and reading.
2. You like music, but not reading
3. You don't like music, but like reading.
4. You don't like music or reading.
Copy your code and paste it below.

User Pdenlinger
by
7.0k points

1 Answer

4 votes

Final answer:

The Python code provided asks the user about their preferences for music and reading, and then displays one of four corresponding messages using a nested if structure.

Step-by-step explanation:

To write a program using a nested if decision structure that asks the user whether they like music and whether they like to read, we can use the following Python code:

# Ask the user if they like music
like_music = input('Do you like music? (yes/no) ')
# Ask the user if they like to read
like_reading = input('Do you like to read? (yes/no) ')

# Nested if statement to determine the message
if like_music.lower() == 'yes':
if like_reading.lower() == 'yes':
print('1. You like music and reading.')
else:
print('2. You like music, but not reading.')
else:
if like_reading.lower() == 'yes':
print('3. You don't like music, but like reading.')
else:
print('4. You don't like music or reading.')

This code first requests the user's preferences on music and reading and then prints one of four messages based on the answers provided.

User Mr Sam
by
7.1k points