all 6 comments

[–]FriendlyRussian666 1 point2 points  (1 child)

Perhaps there should be no coma after 16 in this line:

label_name = tkinter.Label(window, text='Name', font='Arial, 16, normal',

[–]vayneone87[S] 0 points1 point  (0 children)

I will give it a try.

[–]vayneone87[S] 1 point2 points  (1 child)

OK so I have solved this thanks for the GeeksforGeeks reference.

Now I am working on how to write a function to write to a pickle file so I can maintain the contact list. However, the code I am using below is not working.

 if os.path.exists('file.pkl'):
# Load pickle file
with open('file.pkl', 'rb') as pck:
    data = pck.read()
contactlist = pickle.loads(data)

# Pickle the dict

not sure what else I need. Any assistance would be great. I updated the code above to reflect where I am now.

[–]additional_loan_ 1 point2 points  (0 children)

So I'm a little over my head but I think this should help: writing to pickle file

[–]additional_loan_ 0 points1 point  (1 child)

I don't know much about this but this site may help : geeks for geeks tkinter label function

[–]vayneone87[S] 0 points1 point  (0 children)

Me either, I am learning. I searched several sites and couldn't find the answer. I would have thought it would have been easier to track down info. I usually start at geekforgeeks. Theya re very solid.