Python chr / ord 函数区别和使用

Posted 猿说编程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python chr / ord 函数区别和使用相关的知识,希望对你有一定的参考价值。

目录

零基础 Python 学习路线推荐 : Python 学习目录 >> Python 基础入门

Python 中 内置函数 chr 和 内置函数 ord 可以配对使用;chr 函数将 ascll 码转为字符;ord 函数将字符转为 ascll 码;

一.chr 函数将 ascll 码转为字符

# !usr/bin/env python
# -*- coding:utf-8 _*-
"""
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python chr / ord 函数区别和使用.py
@Time:2021/05/10 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!

"""

chr(65)
>>>> "A"

二.ord 函数将字符转为 ascll 码

# !usr/bin/env python
# -*- coding:utf-8 _*-
"""
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python chr / ord 函数区别和使用.py
@Time:2021/05/10 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!

"""

ord("A")
>>>> 65

三.chr 和 ord 配合使用生成随机字符串(随机验证码)

# !usr/bin/env python
# -*- coding:utf-8 _*-
"""
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python chr / ord 函数区别和使用.py
@Time:2021/05/10 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!

"""

import random

for i in range(10):
    str1=\'\'
    for i in range(8):
        ch=chr(random.randrange(ord(\'a\'),ord(\'z\')))
        str1+=ch
    print(str1)

\'\'\'
输出:

jrcrvwpr
diqufjkx
mgmvsaaa
ajswbgse
xwokswsw
xttbhygs
ehubdtje
nppqyisd
qxrjopun
ubcwepwi
\'\'\'

四.猜你喜欢

  1. Python 条件推导式
  2. Python 列表推导式
  3. Python 字典推导式
  4. Python 不定长参数 *argc/**kargcs
  5. Python 匿名函数 lambda
  6. Python return 逻辑判断表达式
  7. Python is 和 == 区别
  8. Python 可变数据类型和不可变数据类型
  9. Python 浅拷贝和深拷贝
  10. Python 异常处理
  11. Python 线程创建和传参
  12. Python 线程互斥锁 Lock
  13. Python 线程时间 Event
  14. Python 线程条件变量 Condition
  15. Python 线程定时器 Timer
  16. Python 线程信号量 Semaphore
  17. Python 线程障碍对象 Barrier
  18. Python 线程队列 Queue – FIFO
  19. Python 线程队列 LifoQueue – LIFO
  20. Python 线程优先队列 PriorityQueue
  21. Python 线程池 ThreadPoolExecutor(一)
  22. Python 线程池 ThreadPoolExecutor(二)
  23. Python 进程 Process 模块
  24. Python 进程 Process 与线程 threading 区别
  25. Python 进程间通信 Queue / Pipe
  26. Python 进程池 multiprocessing.Pool
  27. Python GIL 锁

未经允许不得转载:猿说编程 » Python chr / ord 函数区别和使用

本文由博客 - 猿说编程 猿说编程 发布!

以上是关于Python chr / ord 函数区别和使用的主要内容,如果未能解决你的问题,请参考以下文章

python中ord()函数和chr()函数用法

python的内置函数ord()chr()str()

Python二级考试基础知识(ord,chr函数详解)

python chr()unichr()和ord()

python 字符编码

python 字符编码