qobjects = [
{
question: "If x = 9, what is a correct syntax to print 'The price is 9.00 dollars'?",
options: [
"print(f'The price is {x:.2f} dollars')",
"print(f'The price is {x:2} dollars')",
"print(f'The price is {x:format(2)} dollars')"
],
correct: 0
},
{
fillintheblanks: "exercise_strings8.htm"
},
{
question: "What will be the result of the following code:print(f'The price is {2 + 3} dollars')",
options: [
"The price is 23 dollars",
"The price is 5 dollars",
"The price is {2 + 3} dollars",
"The price is 6 dollars"
],
correct: 1
}
]