Python3---内建函数---bin()

Posted 我是谁9

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3---内建函数---bin()相关的知识,希望对你有一定的参考价值。

前言

该文章描述了函数bin()

2020-01-16

天象独行

  0X01;描述

    bin() 返回一个整数 int 或者长整数 long int 的二进制表示。

  0X02;语法

    bin(x)

    参数:

      x -- int 或者 long int 数字

  0X03;举例:

print(bin(10))
C:UsersaaronDesktopPytoon-cadevenvScriptspython.exe C:/Users/aaron/Desktop/Pytoon-cade/urllib-Study.py
0b1010

Process finished with exit code 0

以上是关于Python3---内建函数---bin()的主要内容,如果未能解决你的问题,请参考以下文章

Python3---内建函数---zip()

第五天python3 内建函数总结

Python3.9的69个内置函数(内建函数)介绍,并附简单明了的示例代码

8 字符串的常用内建函数

Python 的字符串内建函数

python3 内建函数filter