influencer_seller=df[df['Question'] == 'What do you think when an influencer is obviously selling a product?']
online_shoping_influencer=df[df['Question'] == 'What social platform has influenced your online shopping most?' ]
defining_a_influencer=df[df['Question'] == 'What is the most important trait when defining an influencer?' ]
favorite_people=df[df['Question'] == 'Who are your favorite people to follow online?' ]
Churn_from_ads=df[df['Question'] == 'Does it annoy you when popular social media accounts endorse products or services?']
#Save to CSV
influencer_seller.to_csv('E:\\py\\Servay\\influencer_seller.csv',index=False)
online_shoping_influencer.to_csv('E:\\py\\Servay\\online_shoping_influencer.csv',index=False)
defining_a_influencer.to_csv('E:\\py\\Servay\\defining_a_influencer.csv',index=False)
favorite_people.to_csv('E:\\py\\Servay\\favorite_people.csv',index=False)
Churn_from_ads.to_csv('E:\\py\\Servay\\Churn_from_ads.csv',index=False)