Skip to content

Instantly share code, notes, and snippets.

@edib
Created December 16, 2022 16:07
Show Gist options
  • Save edib/196cee10e41989c643f4e03b2a9c9ed7 to your computer and use it in GitHub Desktop.
Save edib/196cee10e41989c643f4e03b2a9c9ed7 to your computer and use it in GitHub Desktop.
midterm = int(input("midterm sınavınızı girin\n"))
final = int(input("final sınavınızı girin\n"))
sonuc = midterm*0.4+final*0.6
if (sonuc >= 60):
print("{} ortalama ile geçtiniz".format(sonuc))
else:
print("{} ortalama ile kaldınız".format(sonuc))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment