Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在数据框中有一些行,其中一列有#Employer Unkown#,#Radar #。我如何使用 python 数据框在数据框中找到这些。
import re matcher=re.compile(r'^#*#') matches = [x for x in df['column'] if matcher.match(x)]