/
rnekrasov
/
Python
Обзор
Документация
Войти
/
rnekrasov
/
Python
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Python_swapping.py
18 строк
354 B
sayampradhan
Rename python to Python_swapping.py
12 окт 2022, 11:47
Не верифицирован
12 окт 2022, 11:47
cb604ce
Код
Авторство
О чём код?
# Python3 program to swap first # and last element of a list # Swap function def swapList(newList): size = len(newList) # Swapping temp = newList[0] newList[0] = newList[size - 1] newList[size - 1] = temp return newList # Driver code newList = [12, 35, 9, 56, 24] print(swapList(newList))