Bir liste içindeki, listenin ilk ve son öğesini değiştirmek için bir Python programı yazın.
1 2 3 4 |
<strong>Input : </strong>[12, 35, 9, 56, 24] <strong>Output :</strong> [24, 35, 9, 56, 12] |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
def Degistir(yeniListe): size = len(yeniListe) # Yer Değiştirme temp = yeniListe[0] yeniListe[0] = yeniListe[size - 1] yeniListe[size - 1] = temp return yeniListe # Ana Program yeniListe= [12, 35, 9, 56, 24] print(Degistir(yeniListe)) |
1 2 3 |
[24, 35, 9, 56, 12] |
Add Comment