Tagged Questions
6
votes
2answers
204 views
Python 3 bytes.index: better way?
Just learned Python 3 in 7 days, and I have the feeling that there's a bit of a hole in my understanding of byte strings. In Python 3, suppose I have a byte string b'1234'. Its iterator returns ...
1
vote
5answers
484 views
Look at the bytes/bits of a variable in C
How can I see the bytes/bits of a variable in C? In terms of binary, just zeros and ones.
My problem is that I want to test to see if any zeros exist in the most significant byte of variable x. Any ...
1
vote
1answer
472 views
How do I work with “image data as a byte string”, using Python?
First I'm going to explain what I'm trying to do and then explain my problem.
Okay so I've been making prototypes on a project that I hope to be working on over the summer. The project is a small ...
2
votes
1answer
136 views
Hash a byte string
I'm working on a personal project, a file compression program, and am having trouble with my symbol dictionary. I need to store previously encountered byte strings into a structure in such a way that ...
1
vote
1answer
1k views
Convert Byte String to Int in Scheme
I have code like this to convert hex into byte string
(define (word->bin s)
(let ((n (string->number s)))
(bytes (bitwise-and (arithmetic-shift n -24) #xFF)
(bitwise-and ...
