Introduction
In this blog, I am going to explain about popping the element in Python. The output will be displayed in the Run Window.
Software Requirement
Python3.5.2.
Simple Programming
- print("Welcome To C#Corner.......")
- print("Popping Elements From A List :")
-
- marks=["78","89","45","77","90"]
- print(marks)
- print(marks.pop(0))
- print(marks)
- print(marks.pop(2))
- print(marks)
Explanation
In this blog, I will explain about popping the element in Python The output will be displayed in the Run Window.