Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJorge Grajeda
Python Development Techdegree Graduate 8,186 PointsCan somebody please explain why does it continue to say too many values to unpack ?
def splitsville(address):
dictionary = {'street': street,
'city': city,
'state': state,
'zip_code': zip_code}
address = dictionary.split()
return dictionary
2 Answers
Steven Parker
231,236 PointsThere's a few issues, here are some hints:
- street, city, state, and zip_code are referenced but never created
- you'll need to split the address string to get the values for these
- be sure to choose the correct delimiter string to split on
Brent Thomas
Data Analysis Techdegree Student 6,032 PointsHi Jorge! Split is not a Dictionary method so I believe the line "address = dictionary.split()" is the cause of your error.
Jorge Grajeda
Python Development Techdegree Graduate 8,186 PointsWould I just replace the Dictionary with something else then ?
Brent Thomas
Data Analysis Techdegree Student 6,032 PointsIt depends - Iβm not 100% sure what youβre trying to accomplish but I think your hoping to pass the address argument to your function and then store its values in the dictionary.
Whether or not you use .split() depends on the object type of address that you are passing into your function.
If address is a list and you know the position of your elements you could do something like
Dictionary = { βstreetβ: address[0], βcityβ: address[1], β¦β¦ }
If address is a string you can call split on address, which will return a list, and then you can store those values in the dictionary in a ways similar to how I showed above.
addressList = address.split() Dictionary = { βstreetβ: addressList[0], βcityβ: addressList[1], β¦. }