I want to I check whether a string is in ASCII or not.
I am aware of ord()
, however when I try ord('é')
, I have TypeError: ord() expected a character, but string of length 2 found
. I understood it is caused by the way I built Python (as explained in ord()
‘s documentation).
Is there another way to check?