Python - List Operations: Insert, Append, Remove, Pop, Sort, Reverse, Print

Опубликовано: 03 Апрель 2020
на канале: Manish Mahour
2,348
21

#Python #List
In this video, I am showing how can we perform basic operations like Insert, Append, Remove, Pop, Sort, Reverse, Print on a list object. We have also performed the below mentions task:

Consider a list (list = []). You can perform the following commands:
insert i e: Insert integer e at position i.
print: Print the list.
remove e: Delete the first occurrence of integer e.
append e: Insert integer e at the end of the list.
sort: Sort the list.
pop: Pop the last element from the list.
reverse: Reverse the list.
Initialize your list and read in the value of n followed by n lines of commands where each command will be of the 7 types listed above. Iterate through each command in order and perform the corresponding operation on your list.