Create dictionary
- We can also start with a dictionary that already has some data in it.
user = {
'fname': 'Foo',
'lname': 'Bar',
}
print(user) # {'lname': 'Bar', 'fname': 'Foo'}
user['email'] = 'foo@bar.com'
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
user = {
'fname': 'Foo',
'lname': 'Bar',
}
print(user) # {'lname': 'Bar', 'fname': 'Foo'}
user['email'] = 'foo@bar.com'