python-CSD-kursu/python-temel/else-if-2.py

9 lines
145 B
Python
Raw Normal View History

2023-05-20 06:45:05 +03:00
a = int(input("Değer giriniz:"))
if a > 0:
print("Pozitif")
else:
if a < 0:
print("Negatif")
else:
print("Sıfır")