summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/string/if_char_in.pyx
blob: 73521b2de6330c39d3c5cceb03795393f8d7f06a (plain)
1
2
3
4
5
cpdef void is_in(Py_UCS4 uchar_val):
    if uchar_val in u'abcABCxY':
        print("The character is in the string.")
    else:
        print("The character is not in the string")