I have this dictionary:
self.biography = {'Name' : '', 'Age' : 0, 'Nationality' : '', 'Position' : '', 'Footed' : ''}
I have this method
self.bio_list = []
def create_player(self):
for key in self.biography.items():
value = input(key + ': ')
temp = [key, value]
self.bio_list.append(temp)
print(self.bio_list)
for i in self.bio_list:
print(i)
I want a way to print out it like so:
Name: Richard
Age: 23
Nationality: British
etc, without the nasty () and also I want the program to print them out the same way they are listed in the dictionary, currently it will just print out in any random order.