我有名为country_regex_patter2和country_name_list的csv文件,如下所示: 我的代码如下所示:
country_name_list_total= pd.read_csv("file...")
country_name_list=country_name_list_total['country_name'].tolist()
input_addr_up=last_lengh('Originator.Address_fix',30)
country_regex_pattern2 = pd.read_csv(r"C:\Users\hiner\Desktop\Jupyter
Outputs\country_regex_pattern2.csv")
country_result =[]
for j in range(0, len(country_name_list)):
p= country_regex_pattern2.iloc[j,0]
m = re.match(p, input_addr_up.upper(), re.M|re.I)
if not (m is None): # if match is found
country_result=country_name_list_total['country_iso_code'][j]
break
但我收到此错误:IndexError:单个位置索引器超出范围