Table of Contents
- Getting Started
- Machine Learning / Deep Learning
- Best Textbooks For Python
- Free Courses for Python
- Best Machine Learning with Python Books
- Free Courses for Machine Learning
Python is an object-oriented, high-level programming language. It has become one of the most popular programming languages in the world in the recent years. It's used in everything from machine learning to building websites and software testing.
Python is popular because of it's simple syntax, modules and libraries, and large and active community. It is very versatile and is beginner friendly as well as open source. Career paths include: developer, data analyst, data scientist, ethical hacker, software engineer, cloud architect, etc.
Getting Started
First, you need to download the latest release of Python.
Option 1:
Running Python in Immediate mode
Typing python
in the command line will invoke the interpreter in immediate mode, where we can directly type Python code. To exit, type quit()
and press enter
.
>>> 1 + 1
2
>>> quit()
Option 2:
Running Python in an Integrated Development Environment (IDE)
To run a Python script file, we need to save the file with the .py
extension. To run the program in the file, you can type python [filename].py
or python3 [filename].py
in the command line, depending on your system.
python3 hello_world.py
Congrats! You wrote your first program in Python! Here's some helpful links to dive deeper into Python's syntax:
Some popular IDEs for Python are:
Machine Learning and Deep Learning with Python
If you are interested in getting started with deep learning with Python, there are some pre-requisites you may be interested in knowing:
- Basic math (calculus, probability and linear algebra)
- Basic python
- Basic statistic
- Basic machine learning
Best Textbooks for Python
- Python Crash Course
- Automate The Boring Stuff with Python
- Learning Python
- Head-First Python
- Elements of Programming Interviews in Python
- Python Cookbook
Free Courses for Python
- Introduction to Computer Science and Programming Using Python
- Introduction to Python Programming
- Learn Python 3 from Scratch
- Python for Beginners
- Getting Started with Python
- Python for Absolute Beginners
- Python Data Structures
- Computing in Python III: Data Structures
Books for Machine Learning
- Introduction to Machine Learning with Python
- Deep Learning with Python
- Hands-On Deep Learning Algorithms with Python
- Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow
- Deep Learning for the Life Sciences
- Deep Learning for Coders with Fastai and PyTorch
Top comments (0)