In this tutorial, we are going to share a Python program to swap the first and last value of a list. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to count all possible paths from top left to bottom right with the output.
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 | a=[] n= int(input("Enter the number of elements in list:")) for x in range(0,n): element=int(input("Enter element" + str(x+1) + ":")) a.append(element) temp=a[0] a[0]=a[n-1] a[n-1]=temp print("New list is:") print(a) |
Enter the number of elements in list:3
Enter element1:56
Enter element2:34
Enter element3:78
New list is:
[78, 34, 56]
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.