This commit is contained in:
Mert Gör 🇹🇷 2023-05-20 06:37:36 +03:00
parent 6dd7187c35
commit 2f4f401018
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

9
else-if.py Normal file
View File

@ -0,0 +1,9 @@
a = int(input('a:'))
if a > 0:
print('pozitif')
else:
if a < 0:
print('negatif')
else:
print('sıfır')