Python Basics

Python is one of the most simple, useful, and powerful programming languages. Python can be used to do anything, including Machine Learning, in a very simplistic manner. Python appears on every sector, finance, aerospace, web/game development, and Machine Learning.
The concept of Machine Learning is very simple, and it can be taught with no coding experience. Don't let coding scare you!
This simple Python tutorial will teach you everything you need to learn in order to start Machine Learning. This includes manipulation of variables and arrays, using libraries and functions.
In this first example you will learning how print information to a terminal and use variables
x = 10
print(x)
Second, in this example you will be learning how to manipulate arrays. An array is a combined list of variables
print(numbers[0])
Third, in the example you will learn what libraries are, and how to use them. First of all, what is a library? A library allows you to use programs and variables that other people have already made. Instead of making a random number generator yourself from the ground up, you can use a library to get one.
Additionally, you will learn conditional statements. You can use conditional statements to choose a desired outcome.
x = numpy.pi
if x < 4 and x > 3:
print("This confirms pi is less then 4 and more then 3")