How to check if a string is ASCII in Python?
Use: `str.isascii()` and this is available since Python 3.7.
If you ask this question on search engine or stack overflow, you might end up at older answers that tells you to do stuff like:
all(ord(c) < 128 for c in s)
Don't do that 😓