zoukankan      html  css  js  c++  java
  • Python的程序结构[4] -> 函数/Function[1] -> 内建函数

    内建函数 / Built-in Function or Method


    Python中有许多的内建函数(查看内建模块部分),此处将对内建函数进行介绍

    内建函数 ord / built-in function ord


    Python 的内置函数 ord 作用是将一个 ASCII 码表中的单个字符转换成对应的十进制整型数据

    >>> ord('b')  
    98  
    >>> ord('c')  
    99  

    内建函数 hex / built-in function hex


    Python 的内置函数 hex 作用是将一个十进制整型数据转换成十六进制表示的字符串,hex 与 binascii.hexlify 区别在于 hex 只接受整形数据不接受字符串。

    >>> hex(88)  
    '0x58'  
    >>> 1.44.hex()  
    '0x1.70a3d70a3d70ap+0'  
    >>> hex('88')  
    Traceback (most recent call last):  
      File "<pyshell#2>", line 1, in <module>  
        hex('88')  
    TypeError: 'str' object cannot be interpreted as an integer  

    内建函数 bin / built-in function bin


    Python 的内置函数 bin 作用是将一个十进制整型数据转换成二进制表示的字符串

    >>> bin(89)  
    '0b1011001'  
    >>> bin(3)  
    '0b11'  

    内建函数 otc / built-in function otc


    Python 的内置函数 otc 作用是将一个十进制整型数据转换成八进制表示的字符串

    >>> oct(16)  
    '0o20'  
    >>> oct(200)  
    '0o310'  

    内建函数 chr / built-in function chr


    Python 的内置函数 chr 作用是将一个十进制整型数据转换成 ASCII 码表中对应的单个字符

    >>> chr(98)  
    'b'  
    >>> chr(97)  
    'a'  
  • 相关阅读:
    算法导论--2.2分析算法
    C++对象模型
    算法导论--插入排序
    记一次Chrome冒充QQ浏览器领取奖励之行
    eclipse做界面开发
    eclipse jad 反编译 插件安装
    eclipse下web开发中缓存问题
    eclipse缓存问题
    No more “busy and acquire with NOWAIT”
    ora-00054:resource busy and acquire with nowait specified解决方法
  • 原文地址:https://www.cnblogs.com/stacklike/p/8099172.html
Copyright © 2011-2022 走看看