What is Linked List?

Untitled

Linked List

#Linked list
linked_list = ['first', 'second', 'third']
print(linked_list)

print()

#To Add Elements
linked_list.append('fourth')
linked_list.append('fifth')
linked_list.insert(3, 'sixth')
print(linked_list)
print()

linked_list.remove('second')
print(linked_list)
print()
['first', 'second', 'third']

['first', 'second', 'third', 'sixth', 'fourth', 'fifth']

['first', 'third', 'sixth', 'fourth', 'fifth']