Python bir liste içindeki elemanları ters çevirme işlemini gerçekleştiren kodlar:
1 2 3 4 |
Input : list = [10, 11, 12, 13, 14, 15] Output : [15, 14, 13, 12, 11, 10] |
Python Kodları:
Yöntem 1:
1 2 3 4 5 6 7 8 |
def Ters(lst): lst.reverse() return lst lst = [10, 11, 12, 13, 14, 15] print(Ters(lst)) |
Yöntem 2:
1 2 3 4 5 6 7 8 |
def Ters(lst): return [ele for ele in reversed(lst)] # Driver Code lst = [10, 11, 12, 13, 14, 15] print(Ters(lst)) |
Yöntem 3:
1 2 3 4 5 6 7 8 |
def Ters(lst): new_lst = lst[::-1] return new_lst lst = [10, 11, 12, 13, 14, 15] print(Ters(lst)) |
Add Comment