/ Published in: Python
Expand |
Embed | Plain Text
import array for byte in array.array('B', "ABCDEFG"): print byte # prints 65, 66, 67, 68, ... and so on.
You need to login to post a comment.
import array for byte in array.array('B', "ABCDEFG"): print byte # prints 65, 66, 67, 68, ... and so on.
You need to login to post a comment.