Why Python?
Link will be apear in 15 seconds.
Well done! you have successfully gained access to Decrypted Link.
Let’s
Find Out ….!!
Write a Program using any language you know to print “
HELLO WORLD “.
•
C++ Program :
#include <iostream>
int main()
{
cout << "Hello World" << endl;
return 0;
}
•
C Program :
#include <stdio.h>
int main()
{
printf(“Hello, World!\n”);
Return
0;
}
•
C Program :
print ( "Hello World")
From above program we can see
that python is the easiest.
Features
•
Simple- Python
is a simple language. Reading a good Python program feels almost like reading
English. It allows you to concentrate on the solution to the problem rather
than the syntax i.e. the language itself.
•
Easy to Learn-Python
is extremely easy to get started with. Python has an extraordinarily simple
syntax.
•
Open source : Python
is publicly available open source software, any one can use source code that
doesn't cost anything.
•
Portable :
High level languages are portable, which means they are able to run across all major hardware and software platforms with few or no change in source code. Python is portable and can be used on Linux, Windows, Macintosh, Solaris, FreeBSD, OS/2, Amiga, AROS, AS/400 and many more.
High level languages are portable, which means they are able to run across all major hardware and software platforms with few or no change in source code. Python is portable and can be used on Linux, Windows, Macintosh, Solaris, FreeBSD, OS/2, Amiga, AROS, AS/400 and many more.
•
Object-Oriented : Python
is a full-featured object-oriented programming language, with features such as
classes, inheritance, objects, and overloading.
•
Python is Interactive :
Python has an interactive console where you get a Python prompt (command line) and interact with the interpreter directly to write and test your programs. This is useful for mathematical programming.
Python has an interactive console where you get a Python prompt (command line) and interact with the interpreter directly to write and test your programs. This is useful for mathematical programming.
•
Interpreted : Python
programs are interpreted, takes source code as input, and then compiles (to
portable byte-code) each statement and executes it immediately. No need to
compiling or linking
•
Extendable : Python
is often referred to as a “glue” language, meaning that it is capable to work
in mixed-language environment. The Python interpreter is easily extended and
can add a new built-in function or modules written in C/C++/Java code.
•
Libraries : Databases,
web services, networking, numerical packages, graphical user interfaces, 3D
graphics, others.
•
Supports :Support
from online Python community