write a program to find if a given number is positive or negative in python
# Enter the number a = int(input(" Enter the number: ")) if a < 0: print("It is negative. ") else: print("It is positive. ")
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment