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