如何根据表格的首字母内容进行筛选?

如何筛选掉首字母为“6”的记录,其他位置有“6”的保留?

回答

假定你用的 pandas.DataFrame

df = pd.DataFrame({'型号': ['600769', '6x34', '689', 'b666']})

df[~df['型号'].str.startswith('6')]

list1 = [600769,'6x34',689,'B999']

def myfilter(title):

return str(title)[0] != '6'

list2 = list(filter(myfilter,list1))

print(list2)

以上是 如何根据表格的首字母内容进行筛选? 的全部内容, 来源链接: utcz.com/a/41309.html

回到顶部