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