Dado un número. La tarea es verificar si el número es positivo, negativo o cero.
Ejemplos:
Input: 5 Output: Positive Input: -5 Output: Negative
Acercarse:
Usaremos las declaraciones if-elif en Python. Comprobaremos si el número es mayor que cero o menor que cero o igual a cero.
A continuación se muestra la implementación.
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)
Producción:
Positive Equal to zero Negative
Publicación traducida automáticamente
Artículo escrito por deepanshumehra1410 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA