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 Python Testing Be Assertive Membership and Other Assertions

What is the situation here, that we might need to convert a binary string to an integer?

I was looking up what the dunder functions do in this lesson.

__int__(self)

will convert a binary string to an integer. Why would we be getting a binary string? In what situations? Do we always need to expect we might get a binary string? Thanks :D

Thanks Ty. If you move that to an answer instead of a comment I'll give you a "Best"

1 Answer

neoty888
neoty888
23,973 Points

This is a very interesting question. Two things come to mind would possibly be in compression algorithms and/or creating device drivers. I have no experience writing either, but I imagine anything that will utilize binary would be used in some sort application dealing with communicating with a device on the machine level, and for compression, having to decompress/compress files.

Thank you Ty.