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

Posted 我是谁9

tags:

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

前言

该文章描述了函数oct()的使用

2020-01-16

天象独行

  0X01;描述

    oct() 函数将一个整数转换成8进制字符串。

  0X02;语法

    oct(x)

    参数:x -- 整数。

  0X03;返回值

    返回8进制字符串

  0X04;举例

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

Process finished with exit code 0

 

      

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

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

python3 内建函数filter

python 内建函数

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

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

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