列「Country」の[note 9]を除外したい場合

test['Country'].str.split('[', expand=True)
# expand=Trueで分割した文字列をDataFrameに展開できる(下図)
test['Country'] = test['Country'].str.split('[', expand=True)[0]
test
列「Country」の[note 9]を除外したい場合

test['Country'].str.split('[', expand=True)
# expand=Trueで分割した文字列をDataFrameに展開できる(下図)
test['Country'] = test['Country'].str.split('[', expand=True)[0]
test