Positive or Negative
Write a Python Program of Positive or Negative.It Consists of two test cases
The below link contains Positive or Negative - question, explanation and test cases
https://drive.google.com/file/d/1XdyNtoVwIHz1PCcmapAAgm2w_X2TFhxV/view?usp=sharing
We need all test cases can be come while code was run
N = eval(input('Enter integer N here: '))
if N < 0:
print('Negative')
if N >0:
print('Positive')
Enter integer N here: -12.5
Negative
Enter integer N here: 15.2
Positive
Comments
Leave a comment