Skip to content

Instantly share code, notes, and snippets.

@edib
Created December 16, 2022 16:19
Show Gist options
  • Save edib/ab06d3d2204e8227dca363f29e103468 to your computer and use it in GitHub Desktop.
Save edib/ab06d3d2204e8227dca363f29e103468 to your computer and use it in GitHub Desktop.
sayi = int(input("bir sayı girin!\n"))
if (sayi > 0):
print("{} sayısı sıfırdan büyüktür.".format(sayi))
elif (sayi < 0):
print("{} sayısı sıfırdan küçüktür.".format(sayi))
else:
print("sayı sıfırdır.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment