summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/string/for_bytes.pyx
blob: 69e9202aef15d4a142b2142b170e4cc8d2545b52 (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")