Loading…
Transcript

Getting Started With Python !!

Getting Started.

World

of

Python

Python is a general purpose, interpreted and dynamically typed language.

With python we can:

build desktop software's.

build web apps.

and many more...

Dynamically typed vs Statically typed.

Difference

Statically typed language:

Statically typed languages perform type checking at compile time

int x=10

Dynamically typed language:

Dynamically-typed languages perform type checking at run time.

e.g x=10

Variables

Variables