Ask Question
13 November, 19:57

Write multiple if statements. if caryear is 1969 or earlier, print "probably has few safety features." if 1970 or higher, print "probably has seat belts." if 1990 or higher, print "probably has anti-lock brakes." if 2000 or higher, print "probably has air bags." end each phrase with period and newline. ex: caryear = 1995 prints:

+5
Answers (1)
  1. 13 November, 22:15
    0
    If (caryear > = 2000):

    print "probably has air bags./n"

    elif (caryear > = 1990):

    print "probably has anti-lock brakes./n"

    elif (caryear > = 1970):

    print "probably has seat belts./n"

    else:

    print "probably has few safety features./n"
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write multiple if statements. if caryear is 1969 or earlier, print "probably has few safety features." if 1970 or higher, print "probably ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers