Do Math in python / python REPL:
1 + 1
8 - 1
10 * 2
35 / 5
Implement the isEven function:
def isEven(number):
# TODO implement isEven
print('10 is even: ' + str(isEven(10)) )
print('23 is even: ' + str(isEven(23)) )Write python code to print numbers 1 to 50, each on a new line: