Write a series of conditional tests. Print a statement describing each test and your prediction for the results of each test. Your code should look something like this:
car = 'subaru'print ("Is car = = 'subaru'? I predict True.") print (car = = 'subaru') print ("/nIs car = = 'audi'? I predict False.") print (car = = 'audi')
+5
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Conditional Tests: Write a series of conditional tests. Print a statement describing each test and your prediction for the results of each ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Conditional Tests: Write a series of conditional tests. Print a statement describing each test and your prediction for the results of each test. Your code should look something like this: car = 'subaru'print ("Is car = = 'subaru'? I predict True.