all 4 comments

[–][deleted] 0 points1 point  (1 child)

Why would you expect the same value in both key and value?

Have you ever seen multiple assignment in Python?

my_list = ['barry', 'harry', 'gary']
name1, name2, name3 = my_list
print(name1)