for循环每次取出一个字符(不是字节)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环每次取出一个字符(不是字节)相关的知识,希望对你有一定的参考价值。
python3.5 for循环每次取出一个字符(不是字节)
#!/usr/bin/env python # -*- coding:utf-8 -*- my_str = "我是哈哈" for i in my_str: my_bytes = bytes(i, ‘utf-8‘) print(my_bytes) my_bytes = bytes(i, ‘gbk‘) print(my_bytes) for i in my_str: my_bytes = bytes(i, ‘utf-8‘) for b in my_bytes: print(hex(b)) print(bin(b)) print(oct(b)) print(b)
以上是关于for循环每次取出一个字符(不是字节)的主要内容,如果未能解决你的问题,请参考以下文章