"Rewrite the grade program from the previous chapter using a function called computegrade that takes a score as its parameter and returns a grade as string"
def computegrade(): if s>=0.9 and s<1.0: return "A" elif s>=0.8 and s<0.9: return "B" elif s>=0.7 and s<0.8: return "C" elif s>=0.6 and s<0.7: return "D" elif s<0.6 and s>0: return "F" else: print("bad score") quit()
print(computegrade())
Kitapta yazan değerleri denediğimde kod doğru çalışıyor fakat soruda "that takes a score as its parameter" diye bir kısım var, skoru parametre olarak nasıl yerleştireceğimi anlayamadım yardımcı olabilir misiniz ?
Bu kod aslında çalışıyor.Metoda parametre göndermek için:
- def computegrade(alinanparametre):
ile dışarıdan 1 parametre alacak şekilde yapılandır.