【发布时间】:2017-12-16 17:22:24
【问题描述】:
您好,我有两个如下所示的 DataFrame
DF1
Alpha | Numeric | Special
and | 1 | @
or | 2 | $
| 3 | &
| 4 |
| 5 |
和
DF2 with single column
Content |
boy or girl |
school @ morn|
我想搜索 DF1 中的任何列是否有 DF2 的内容列中的任何关键字,并且输出应该在新的 DF 中
output_DF
output_column|
Alpha |
Special |
有人帮我解决这个问题
【问题讨论】:
标签: python pandas dataframe data-analysis