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 trialAshish S
Python Web Development Techdegree Student 938 PointsWhy make object to string?
At 4.06 Andrew says when make it object by parsing string? Why do we need to make it object while we already have string?
1 Answer
Steven Parker
231,236 PointsHi, I got alerted by your tag.
The string contains the representation of an object that was previously converted into a string to simplify transmission. The purpose for parsing it is to convert it back into an object so the internal properties can be accessed.
This all might make a bit more sense after you see the next video.