0
Below code working absolutly fine but in quiz its marking wrong
Below code working absolutly fine but in quiz its marking wrong >>> x=4 >>> x+=5 >>> print x 9 >>>
1 Answer
+ 1
if it's python3 the print statement must have parentheses instead
otherwise i don't see why it would mark it wrong ;/
print(x)