There are many ways of doing it using methods-
1. pop method – list.pop(index)
2. remove method – list.remove(list[index])
3. del function – del list[index]
4. slicing – list[n:]
Here is an example for you-
# code
# www.codewindow.in
a=[100,111,122,132,144]
b=[10,11,12,13,14]
c=['a','s','d','f']
d=["code","window","repeat"]
n=int(input())
#using pop method
for i in range (n):
a.pop(0)
print(a)
#using remove method
for i in range (n):
b.remove(b[0])
print(b)
#using del method
for i in range (n):
del c[0]
print(c)
#using slicing
d=d[n:]
print(d)
Input:
2
Output:
[122, 132, 144]
[12, 13, 14]
['d', 'f']
['repeat']
Explanation:
Here,
pop(0) pops the first element from the list. The for loop executes the block n times which means the first element is removed every time the list gets updated.
remove(b[0]) removes the element indexed at 0 i.e. the first element. The for loop executes the block n times which means the first element is removed every time the list gets updated.
del c[0] deletes the first element indexed at 0 i.e. the first element. The for loop executes the block n times which means the first element is removed every time the list gets updated.
d[ n:] slices the array from index 2 which is ‘n’ here, leaving the elements from 0 to 1.
Also checkout
- UKG Hiring for Software Engineer
- Unlocking Innovation and Diversity: Accenture HackDiva Empowers Women in Tech with Cutting-Edge Solutions – codewindow.in
- QA Engineer Opportunities at Siemens Company: Apply Now – codewindow.in
- Transform Your Career with S&P Global: Apply for the Software Development Engineer Role and Lead the Future of Financial Technology Innovation – codewindow.in
- Unlock Your Potential at Accenture as an Associate Software Engineer – Elevate Your Career with Innovation and Excellence – codewindow.in
- Accelerate Your Career: Join NVIDIA’s Elite Software Engineering Internship Program and Shape the Future of Technology – codewindow.in
- Software Engineer at ABB: Unlock Innovation and Shape the Future – codewindow.in
- IBM Associate Systems Engineer Job: Boost Your Career with a Leading Technology Giant – codewindow.in
- Start Your IT Career Journey with Amazon: IT Services Support Associate I Opportunity – codewindow.in
- Shape the Future of Web: Front-End Software Engineer Opportunity at Google Cloud – codewindow.in
- Exciting Opportunity: Java Spring Boot Senior Developer Role at Infosys – codewindow.in
- Unlock Your Potential at Nokia: Software Engineer Opportunities Await – codewindow.in
- Join Microsoft’s World-Class Team as a Software Engineer and Shape the Future of Technology – codewindow.in
- Virtusa is Seeking Talented React JS Developers to Drive Digital Excellence – codewindow.in
- Join IBM Dynamic Team as a Full Stack Developer and Shape the Future – codewindow.in
- EY Welcomes Aspiring AI/ML Interns to Unlock the Future of -codewindow.in
- Wipro is Hiring Test Engineers to Elevate Quality Assurance – codewindow.in
- Deloitte Is Hiring: Analysts and Senior Analysts Wanted to Drive Innovation – codewindow.in
- Exciting Software Development Opportunity At Oracle – codewindow.in
- PayPal Hiring Data Analyst 1 – codewindow.in
- SIEMENS HEALTHINEERS Hiring Data Scientist ( ML & AI) – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Unstop Hiring Challenges Internships and Hackathons – codewindow.in
- Programming in Python – codewindow.in
- Programming in Python – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Data Structure – comprehensive guide – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Automata Fixing – codewindow.in
- Codewindow Mock Test 1
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Pseudocode- codewindow.in
- Programming in C++ – codewindow.in
- Aptitude tricks – codewindow.in
- Aptitude Tricks – codewindow.in
- Test series – codewindow.in
- Aptitude Tricks – codewindow.in
- C++ Technical Questions – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- Programming in C++ – codewindow.in
- March 2025
- January 2024
- October 2023
- September 2023
- August 2023
- July 2023
- June 2023
- May 2023
- April 2023
- March 2023
- February 2023
- January 2023
- November 2022
- October 2022
- September 2022
- August 2022
- July 2022
- June 2022
- May 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- October 2021
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- April 2021
- March 2021
- January 2021
- December 2020
- November 2020
- October 2020
- September 2020
- April 2020