5 Respostas
+ 7
task description:
Properties
Complete the provided code by creating an isEven property, which returns True if the value is even, and False if the value is odd.
class Number:
def __init__(self, num):
self.value = num
x = Number(int(input()))
print(x.isEven)
Use the modulo operator % to check if the value is even or odd. The value is even if the remainder of dividing it by 2 is 0.
+ 7
Riya ,
self.value stores the input number
+ 3
Oh okay thank you Lothar ☺️
+ 2
Lothar ,
In self.value what value stored
+ 1
Can you copy the task description and post it here?
Then, copy your code attempt, put it into the code playground and add that here too.