# How to Analyze SurveyMonkey Data in Python

DevFeed: [How to Analyze SurveyMonkey Data in Python](<https://devfeed.tech/articles/how-to-analyze-surveymonkey-data-in-python-27976.md>)

Original publisher: [Read original article](<https://tech.trivago.com/post/2019-09-23-howtoanalyzesurveymonkeydatainpython/>)

Author: Ruoyun Lin

Published: 2019-09-23T00:00:00Z

Content type: tutorial

Language: en

Sources: [Trivago](<https://devfeed.tech/sources/trivago.md>)

Topics: [Python](<https://devfeed.tech/topics/python.md>), [Data analysis](<https://devfeed.tech/topics/data-analysis.md>), [Programming](<https://devfeed.tech/topics/programming.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [analysis](<https://devfeed.tech/tags/analysis.md>), [code](<https://devfeed.tech/tags/code.md>), [data-analysis](<https://devfeed.tech/tags/data-analysis.md>), [data-science](<https://devfeed.tech/tags/data-science.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [import](<https://devfeed.tech/tags/import.md>), [introduction](<https://devfeed.tech/tags/introduction.md>), [learning](<https://devfeed.tech/tags/learning.md>), [packages](<https://devfeed.tech/tags/packages.md>), [python](<https://devfeed.tech/tags/python.md>), [user-experience](<https://devfeed.tech/tags/user-experience.md>)

## AI overview

This tutorial explains how to import data from multiple SurveyMonkey surveys into Python, generate a codebook, and visualize checkbox, multiple-choice, and matrix-table results. It is based on Python 3.7 and demonstrates exporting survey responses for analysis and comparison across surveys.

## Source excerpt

As a user researcher, it is important to know more about our users and their preferences concerning our product. One way to do that is by conducting surveys.In order to gather user feedba...