ameliabob Posted July 26, 2018 Posted July 26, 2018 I see many examples o dictionary used but I cannot find any that adds to an existing dictionary a = dict() a['fgh']=123 a['ghi'] = 345 Yields the error a['ghi']=345 TypeError: 'str' object does not support item assignment Is it only possible to build it once and not add to it??
Ingolme Posted July 27, 2018 Posted July 27, 2018 That code should run without error, as you can see in the documentation: https://docs.python.org/3/tutorial/datastructures.html#dictionaries Is that all of the code? There might be something you're not showing that is interfering.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now