Computer Science, asked by samarthbhandare2712, 1 day ago

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 pradummyakumar
0

Answer:

return False is the correct answer for the gap

Similar questions