write a python program to interchange first and last elements in a list

Опубликовано: 08 Сентябрь 2024
на канале: Code With TJ
73
4

Hello Programmers, Welcome to my Python Programming Tutorial Channel.

In this video you will learn about how to write a python program to interchange first and last elements in a list

Python Scripts
========================
https://codewithtj.blogspot.com/2024/...

Python Functions Solved
========================
https://codewithtj.blogspot.com/2023/...

Python Programs Solved
========================
https://codewithtj.blogspot.com/2023/...

Python 3 Tutorial - Code
=============================
"""
write a python program to interchange first and last elements in a list
"""

length = int(input("Enter List Length : "))
numbers = []
for _ in range(length):
temp = int(input("Enter a Number : "))
numbers.append(temp)

print("List Before Interchange ...")
print(numbers)

numbers[0], numbers[-1] = numbers[-1], numbers[0]

print("List After Interchange ...")
print(numbers)


Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners