使用python正则语句报错TypeError: expected string or bytes-like object的解决方法

使用python正则语句报错TypeError: expected string or bytes-like object的解决方法_第1张图片
如图,用re.search出现TypeError问题。
解决方法:
把dfl转化成字符串即可

dfl = df.loc[0]
print(re.search('HS7',str(dfl))

结果:使用python正则语句报错TypeError: expected string or bytes-like object的解决方法_第2张图片

你可能感兴趣的:(python,jupyter)