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.