
Valeria Martucci
1,265 PointsPlease help me with the answer. I ve tried if number %2 == 0 and is not right...
Even numbers have not a remainder... but is seems impossible to translate this in python...
def even_odd(number):
if number %2 = 0
return True
else:
return False
2 Answers

Alex Koumparos
Python Web Development Techdegree Student 35,936 PointsHi Valeria,
Remember that in Python ==
is the test for equality and =
is used to assign a value to a variable.
If you wanted to make the function even shorter, you can use the fact that number %2 == 0
is itself a value, either True
or False
and just return that. Consider the following example:
return a == b
If a
is the same as b
then a == b
is True
so this line of code would return True. If a
isn't the same value as b
then a == b
is False
and this code would return False.
Cheers
Alex

Valeria Martucci
1,265 PointsYou are right... ant that's my mistake...Is the synthax correct? I ve tried again using the right == but it's still not working

Alex Koumparos
Python Web Development Techdegree Student 35,936 PointsHi Valeria, you are also missing the colon at the end of your if
statement. Remember that any time you have a statement that will cause the next line to be indented, you use the colon at the end of the line:
if <some test>:
<do something>
else:
<do something else>