2 lines
92 B
Python
2 lines
92 B
Python
def ll_insert(name, phone, head):
|
|
data = {'name' : name, 'phone' : phone, "next" : head} |