Python Forum
Can Python do it? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: Can Python do it? (/thread-23932.html)



Can Python do it? - onuruca - Jan-23-2020

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?


RE: Can Python do it? - michael1789 - Jan-23-2020

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.