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 trialJackson Boehman
198 PointsKenneth says "Make sure to look through the docs about strings to tie up any loose ends." Where can I find the docs?
Kenneth mentions these docs within the last 10 seconds of the video.
2 Answers
Kenneth Love
Treehouse Guest TeacherY'all keep linking to the Python 2 docs. We only use modern Python around these parts, https://docs.python.org/3/library/string.html
Also, if I mention docs, resources, etc, they're almost always linked in the Teacher's Notes that are located below the video (at least on the site, I'm not sure exactly where they are on the mobile apps). If I mention them and you don't find them in the Teacher's Notes, let me know so I can add them.
Jeff Muday
Treehouse Moderator 28,720 PointsPython 2, I can't quit you! QQ
Justyna Julia Jamr贸z
13,354 PointsHe's talking about official python docs:
Jeff Muday
Treehouse Moderator 28,720 PointsJeff Muday
Treehouse Moderator 28,720 PointsA clever pun, that's Kenneth for you!
He thinks the official python docs give quite a bit of detail on all the special operations on strings.
https://docs.python.org/2/library/string.html
In my python adventure I find I am using these the most: .lower(), .upper(), .split(), .replace(), .join()