(CO 1) What, if anything, is wrong with this code?
(CO 1) What, if anything, is wrong with this code?
rating = input(“Enter the rating for
this product: “)
rating = rating + 2
print(“The adjusted rating is ” + rating + “.”)
Group of answer choices
nothing is wrong with this code
a string variable is used in an arithmetic expression
the coding in the print() function contains illegal plus signs
the input() function should be an int() function