tall = 7 tekst = "a" if tall > 10: tekst = tekst + "b" elif tall < 5: tekst = tekst + "c" else: tekst = tekst + "d" # Hva skrives ut? print(tekst)