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 trialNoor Hafiza Binti Ibrahim
11,712 PointsTechnical Interview Prep: Python Basics - Splitsville
Help, i canβt return the correct keys and values in the dictionary. Any suggestions?
def splitsville(address):
keys = "street", "city", "state", "zip_code"
text = "100 E Main St, Anywhereville, Oregon, 22222"
value = text.split(", ")
address = dict(zip(keys, value))
return address
4 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsHey Noor Hafiza Binti Ibrahim, you are SO close.
- The string split needs to be on the parameter
address
instead of the test valuetext
- The built-in
zip
returns an iterable. To unroll it as an argument todict()
, wrap thezip
in alist()
Post back if you need more help. Good luck!!
Noor Hafiza Binti Ibrahim
11,712 PointsThank you so much π
Mohammed Saleh
Python Development Techdegree Student 2,989 Pointsdef splitsville(address):
keys = "street", "city", "state", "zip_code"
text = address.split()
dictionary = dict(zip(keys, text))
return dictionary
splitsville("100 E Main St, Anywhereville, Oregon, 22222")
why it is not going through !!
Chris Freeman
Treehouse Moderator 68,441 PointsHey Mohammed Saleh, your spot on, except your choice of split parameters. The address elements are separated by a comma-space β, β. Change the split parameter and pass the challenge!
Post back if you need more help. Good luck!!!
Mohammed Saleh
Python Development Techdegree Student 2,989 Pointsit worked out, thanks so much.,