Python ord函数()案例详解

作者:cumt951045 时间:2023-06-25 04:50:28 

python中ord函数

Python ord()函数 (Python ord() function)

ord() function is a library function in Python, it is used to get number value from given character value, it accepts a character and returns an integer i.e. it is used to convert a character to an integer i.e. it is used to get the ASCII value of a given character.

ord()函数是Python中的一个库函数,用于从给定字符值中获取数字值,它接受一个字符并返回一个整数,即用于将字符转换为整数,即用于获取ASCII给定字符的值 。

Syntax:

句法:


ord(character)

Parameter:character – character value to be converted in an integer value.

参数: character-要转换为整数值的字符值。

Return value: str – returns an integer value of given character.

返回值: str –返回给定字符的整数值。

Example:

例:


Input:
val = 'A'
print(ord(val))

Output:
65

Python code to convert a character into an integer (ASCII value)

Python代码可将字符转换为整数(ASCII值)


# python code to demonstrate an example
# of ord() function

val = 'A'
print("ASCII code of ", val, " is = ", ord(val))

val = 'x'
print("ASCII code of ", val, " is = ", ord(val))

val = '@'
print("ASCII code of ", val, " is = ", ord(val))

val = '8'
print("ASCII code of ", val, " is = ", ord(val))

Output

输出量

ASCII code of  A  is =  65

ASCII code of  x  is =  120

ASCII code of  @  is =  64

ASCII code of  8  is =  56

来源:https://blog.csdn.net/cumt951045/article/details/107803708

标签:Python,ord()
0
投稿

猜你喜欢

  • Python中Selenium上传文件的几种方式

    2022-08-13 04:10:40
  • python实现人脸识别经典算法(一) 特征脸法

    2021-07-15 11:35:03
  • XMLHTTP获取web造访头信息和网页代码

    2010-04-01 14:37:00
  • 详解springboot 使用c3p0数据库连接池的方法

    2024-01-19 04:59:09
  • 如何固定表格的标题行和标题列

    2007-09-20 13:03:00
  • Django静态资源部署404问题解决方案

    2021-05-20 21:28:46
  • Mysql按条件计数多种实现方法详解

    2024-01-18 09:43:35
  • 解决Microsoft VBScript 运行时错误 (0x800A0046) 没有权限的解决方案

    2009-09-03 13:28:00
  • Python 列表去重去除空字符的例子

    2021-07-11 02:49:14
  • python定时任务apscheduler的详细使用教程

    2023-03-30 07:48:05
  • Python Django2 model 查询介绍(条件、范围、模糊查询)

    2023-11-02 15:32:09
  • Python利用 utf-8-sig 编码格式解决写入 csv 文件乱码问题

    2022-03-27 17:21:42
  • PyCharm代码回滚,恢复历史版本的解决方法

    2021-01-08 21:19:55
  • 2010怎么就宅了——我们是设计星球的阿凡达

    2010-03-09 13:26:00
  • python调用文字识别OCR轻松搞定验证码

    2023-02-20 17:10:54
  • Safari参考样式库之webkit

    2009-07-26 09:50:00
  • 跟老齐学Python之深入变量和引用对象

    2022-05-07 23:17:43
  • python中的逆序遍历实例

    2023-02-27 19:57:45
  • security.js实现的RSA加密功能示例

    2024-04-08 10:54:12
  • FrontPage2003 中网页布局功能的应用

    2007-11-18 14:43:00
  • asp之家 网络编程 m.aspxhome.com