dbaupp comments on What is the best programming language? - Less Wrong Discussion
You are viewing a comment permalink. View the original post to see all comments and the full post content.
You are viewing a comment permalink. View the original post to see all comments and the full post content.
Comments (98)
Also, one shouldn't ignore the practical advantages of a batteries-included language (like Python) for enabling you to do things.
For example, if one wants to do some transformation of a spreadsheet which might be tricky or annoying to do in Excel/LibreOffice, one can just
import csvand you've got a complete CSV file reader. Similarly, it's animportand 2 function calls to get a file off the internet.I only count one function call:
The built-in urllib and urllib2 modules can do this too, but they're a disaster that should be buried in the ground. The general consensus is that requests is the Right Thing. You have to install it, but that should be easy with the pip package manager:
By the way, I agree with the recommendation of Python. It's a very easy language to get started with, and it's practical for all sorts of things. YouTube, for example, is mostly written in Python.
Thanks for requests!