Python Forum

Full Version: Can Python do it?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wonder that is python good enough to social data science? for example could python analyze the data ( https://www.kaggle.com/ma7555/schengen-visa-stats ) or similar databases. Could I add artificial variable with python on the data. Summary how well does python use social data science?
Those files are .cvs format. So yes, you can do it and do it perfectly well. There is a python library call cvs.py that contains all the commands and operations you would need.

see
https://docs.python.org/3/library/csv.html

You'd still need to learn how to code in python of course, but that format is commonly used.