summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/string/for_bytes.pyx
blob: d4d3e1f810ad4276f8fa1138a5fe9919b1b27262 (plain)
1
2
3
4
5
6
cdef bytes bytes_string = b"hello to A bytes' world"

cdef char c
for c in bytes_string:
    if c == 'A':
        print("Found the letter A")