Examples
Checks for Alphabetic and Numeric Characters
import numpy as np
import pandas as pd
s1 = pd.Series(['two', 'two2', '2', ''])
s1.str.isalpha()
s1.str.isnumeric()
s1.str.isalnum()
Note that checks against characters mixed with any additional punctuation or whitespace
will evaluate to false for an alphanumeric check.
s2 = pd.Series(['P Q', '2.5', '2,000'])
s2.str.isalnum()