Answers for "positive and negative using python"

1

how to make a program that identifies positives and negatives in python

number = float(input(" Please Enter any Numeric Value : "))

if(number > 0):
    print("{0} is a Positive Number".format(number))
elif(number < 0):
    print("{0} is a Negative Number".format(number))
else:
    print("You have entered Zero")
Posted by: Guest on June-15-2020
4

convert negative to positive in python

>>> n = -42
>>> -n       # if you know n is negative
42
>>> abs(n)   # for any n
42
>>> abs(-5.05)
5.05
Posted by: Guest on October-27-2020

Code answers related to "positive and negative using python"

Python Answers by Framework

Browse Popular Code Answers by Language