# Check for entries related to "研究與開發" in the 'question' and 'answer' columns
research_development_entries=data_big5[data_big5.apply(lambdax:"研究與開發"inx['question']or"研究與開發"inx['answer'],axis=1)]# Display these entries with their row indices
research_development_entries.index+=1# Adjusting index to be 1-based for user convenience
research_development_entries
# Filter the rows that contain the term "技術經理" in the 'answer' column
tech_manager_data=data_big5[data_big5['answer'].str.contains('技術經理')]# Display the filtered data
tech_manager_data