The is_positive function should return True if the number received is positive, otherwise it returns None. Can you fill in the gaps to make that happen?
def is_positive(number):
if ___:
return ___
Help me solve this problem which is related to #python programming.
Answers
Answered by
0
Answer:
return False is the correct answer for the gap
Similar questions