Odpowiedź:
Python 3
t = [7, 6, 9, 2, 3]
def KONIEC(t):
max_value = max(t)
max_index = t.index(max_value)
t.pop(max_index)
t.append(max_value)
return(t)
print(t)
print(KONIEC(t))
Wyjaśnienie: