Introduction to Python:

Python is an interpreted high-level general-purpose programming language. It's one of the most user-friendly programming languages. Many of the cutting edge Artificial Intelligence systems have been programmed in Python. For beginners and students, it's the best programming language to get started because of its non complex syntax structure.

We will get started with a simple program.

print("Hello World !")

In every programming language, we usually start with printing hello world. So in Python we start by using the keyword print, followed by the content we want to print. In our case its Hello World !

Topics

Introduction

Comments

Variables

Type Casting

Datatypes

Numbers

Strings

Booleans

Operators