2019年1月18日 星期五

[ Python 常見問題 ] Convert string to binary in python

Source From Here 
Question 
I am in need of a way to get the binary representation of a string in python. e.g. 
  1. st = "hello world"  
  2. toBinary(st)  
Is there a module of some neat way of doing this? 

How-To 
You can leverage built-in functions ord, bytearray and format: 
>>> str = "hello world" 
>>> ' '.join(format(ord(x), 'b') for x in str) 
'1101000 1100101 1101100 1101100 1101111 100000 1110111 1101111 1110010 1101100 1100100' 
>>> ' '.join(format(x, 'b') for x in bytearray(str)) 
'1101000 1100101 1101100 1101100 1101111 100000 1110111 1101111 1110010 1101100 1100100'


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...