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 trial

Python Technical Interview Prep: Python Basics Basic Python Splitsville

Noor Hafiza Binti Ibrahim
Noor Hafiza Binti Ibrahim
11,712 Points

Technical Interview Prep: Python Basics - Splitsville

Help, i can’t return the correct keys and values in the dictionary. Any suggestions?

split.py
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
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Noor Hafiza Binti Ibrahim, you are SO close.

  • The string split needs to be on the parameter address instead of the test value text
  • The built-in zip returns an iterable. To unroll it as an argument to dict(), wrap the zip in a list()

Post back if you need more help. Good luck!!

Mohammed Saleh
seal-mask
.a{fill-rule:evenodd;}techdegree
Mohammed Saleh
Python Development Techdegree Student 2,989 Points
def 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
Chris Freeman
Treehouse Moderator 68,423 Points

Hey 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!!!