summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/string/for_char.pyx
blob: 81abae97c97cbb8b4e4d6e783158d49aa11be469 (plain)
1
2
3
4
5
6
cdef char* c_string = "Hello to A C-string's world"

cdef char c
for c in c_string[:11]:
    if c == 'A':
        print("Found the letter A")