Write multiple if statements: If carYear is before 1967, print "Probably has few safety features." (without quotes). If after 1971, print "Probably has head rests.". If after 1992, print "Probably has anti-lock brakes.". If after 2002, print "Probably has tire-pressure monitor.". End each phrase with period and newline. Ex: carYear = 1995 prints: Probably has head rests. Probably has anti-lock brakes.

Respuesta :

In programming, if statements are used to make decisions;

They are also known as conditional statements

In Python, the syntax of an if statement is:

if(condition):

   statements

The multiple if statements written in Python are as follows:

if carYear < 1967:

  print("Probably has few safety features.\n")

if carYear > 1971:

  print("Probably has head rests.\n")

if carYear > 1992:

  print("Probably has anti-lock brakes.\n")

if carYear > 2002:

  print("Probably has tire-pressure monitor.\n")

Read more about similar programs at:

https://brainly.com/question/24833629