What Is Python

What Is Python
Python is a powerful programming language ideal for scripting and rapid application development. It is used in web development (Django

), scientific and mathematical computing (Orange, SymPy, NumPy) to desktop graphical user Interfaces (Pygame, Panda3D).

This tutorial introduces you to the basic concepts and features of Python 3. After reading the tutorial, you will be able to read and write

basic Python programs, and explore Python in depth on your own.

How to Get Started With Python
Python is a cross-platform programming language, meaning, it runs on multiple platforms like Windows, MacOS, Linux and has even been

ported to the Java and .NET virtual machines. It is free and open source
1) Run Python
2)Run Python in the Integrated Development Environment (IDE)

Python Keywords
Keywords are the reserved words in Python.
All the keywords except True, False and None are in lowercase and they must be written as it is. The list of all the keywords is given

below.

Keywords in Python
False class finally is return
None continue for lambda try
True def from nonlocal while
and del global not with
as elif if or yield
assert else import pass
break except in raise

Python Comments
we use the hash (#) symbol to start writing a comment

Multi-line comments
nother way of doing this is to use triple quotes, either ''' or """.

Comments

Popular posts from this blog

Numbers

Date and Time