November 2017
Beginner to intermediate
204 pages
5h 23m
English
Python is a generalized programming language used for everything from web development (Django and Flask) to game development, and for scientific and numerical computation. See Python.org/about/apps/.
Python is really useful for data wrangling and scientific computing in general because it emphasizes simplicity, readability, and modularity.
To see this, take a look at a Python implementation of the hello world program, which prints the words Hello World!:
Print("Hello World!")
To do the same thing in Java, another popular programming language, we need something a bit more verbose:
System.out.println("Hello World!");
While this may not seem like a huge difference, extra research and consultation of documentation can add up, adding time ...
Read now
Unlock full access