Python: Finding binary representations of integers

Source: Internet
Author: User

Solution Method:

1, the integer to seek the remainder

2, repeat, Integer in addition to 2 to seek remainder, until the divisor is 0

3. Stitching remainder

4. Reverse string

defInt2two (intno): Twostr="'    ifIntno = =0:twostr='0'     whileIntno! =0:intmod= Intno% 2Intno= INTNO//2Twostr= Twostr +Str (INTMOD)return '0b%08d'%int (twostr[::-1])if __name__=='__main__':    Print(Int2two (2796202))    Print(Bin (2796202))

Operation Result:
C:\Users\suneee\AppData\Local\Programs\Python\Python36\python.exe E:/wangjz/PyWorkSpace/LearnPython/int2bin.py
0b1010101010101010101010
0b1010101010101010101010

Process finished with exit code 0

Python: Finding binary representations of integers

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.