def print_hei(): print("Hei") """ indeks = 0 while indeks < 5: print_hei() indeks += 1 """ for i in range(5): print_hei()