Problem
Write multiple if statements: If car_year is before 1967, print "Probably has few safety features." (Without quotes). If after 1969, print "Probably has seat belts." If after 1992, print "Probably has electronic stability control." If after 2001, print "Probably has tire-pressure monitor." End each phrase with period and newline. Remember that print() automatically adds a newline. Ex: car_year = 1995 prints:Probably has seat belts.