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?
Answers
Answered by
0
Answer:
I'm sorry I don't know sorry
Answered by
0
Answer:
def is_positive(number):
true = "true"
if number > 0:
print(true)
# is_positive(13) (clear this)
# type this to check (clear this)
Explanation:
to cheack just write is_positive( #number u want )
Similar questions