Извлеките целое число из строки в пандах
df['B'].str.extract('(\d+)').astype(int)
Cooperative Civet
df['B'].str.extract('(\d+)').astype(int)