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
gary loo
Python Web Development Techdegree Student 557 PointsStr.join codes
Hi, How do I see the codes for string.join(parameter) as in ", ".join(flavors).How do I access the built-in library codes? I want to see the codes for why this syntax will produce the result it did. Thanks.
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You can find the code for the join method here because luckily, Python is open source. That being said, it's important to note that if you don't have experience with the C programming language, this will likely be tricky to understand.
Hope this helps!
gary loo
Python Web Development Techdegree Student 557 Pointsgary loo
Python Web Development Techdegree Student 557 PointsThanks Jennifer.