/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
import array for byte in array.array('B', "ABCDEFG"): print byte # prints 65, 66, 67, 68, ... and so on.