Skip to content

Python Notes

Overview

This is a "Hello World" notes & resources for Python Programming.

What's Python Programming?

Python is a high-level, general-purpose programming language reated by Guido van Rossum, and first released on February 20, 1991.

Applications

  • Data Science: Data Analysis & Wrangling ..
  • Artificial Intelligence & ML
  • Computer Vision
  • Maths: Algebra & Analysis ...

Tools and Frameworks

  • Numpy: algebra
  • Pandas: data exploratory & analysis ..
  • Matplotlib: data visualization
  • Pillow
  • Opencv
  • ...

Hello World!

import os
import sys

# requirements >=3.X

print("Hello World!")

Output:

Hello World!

Python & Artificial Intelligence (AI)

Python & Embedded Systems

Python & Graphics Interfaces

References

Documentations: - python.org - Wikipedia: - Python Programming Language

Courses & Tutorials: - The Python Tutorial - python.org - IBM Data Science Course: - Python for Data Science and AI Development

Books

"Python is an experiment in how much freedom programmers need" - Guido van Rossum