📌  相关文章
📜  Python程序检查数字是正数还是负数还是零

📅  最后修改于: 2022-05-13 01:55:39.466000             🧑  作者: Mango

Python程序检查数字是正数还是负数还是零

给定一个数字。任务是检查数字是正数还是负数还是零。

例子:

Input: 5
Output: Positive

Input: -5
Output: Negative

方法:

我们将在Python中使用 if-elif 语句。我们将检查数字是大于零还是小于零或等于零。

下面是实现。

Python3
# Python program to check whether
# the number is positive, negative
# or equal to zero
  
def check(n):
      
    # if the number is positive
    if n > 0:
        print("Positive")
          
    # if the number is negative
    elif n < 0:
        print("Negative")
          
    # if the number is equal to
    # zero
    else:
        print("Equal to zero")
          
# Driver Code
check(5)
check(0)
check(-5)


输出:

Positive
Equal to zero
Negative