a = raw_input (“1º numero”)
b = raw_input (“2º numero”)
maximum = max(a,b)
print maximum
Whats wrong with this code in python 3
Because there’s always a error in “print maximum” but whaen i put in python 2 there isn´t that error anymore
Can you help me?
Okay, then stick to Python 2 syntax. You can still use the Python 3 print () statement so build on the habit of using the parens. It shouldn’t affect your lessons (but if it does, then remove the parens).