Python3 ord() 函數(shù)

2019-03-26 10:13 更新

Python3 ord() 函數(shù)

Python3 內(nèi)置函數(shù) Python3 內(nèi)置函數(shù)

描述

Python3 ord() 函數(shù)是 chr() 函數(shù)(對于 8 位的 ASCII 字符串)的配對函數(shù),它以一個字符串(Unicode 字符)作為參數(shù),返回對應(yīng)的 ASCII 數(shù)值,或者 Unicode 數(shù)值。

語法

以下是 ord() 方法的語法:

ord(c)

參數(shù)

  • c -- 字符。

返回值

返回值是對應(yīng)的十進制整數(shù)。

實例

以下展示了使用 ord() 方法的實例:

>>>ord('a')
97
>>> ord('€')
8364
>>>

Python3 內(nèi)置函數(shù) Python3 內(nèi)置函數(shù)


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號