Red Security

Full Version: Python - Intro for beginers
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
---------------------------------------------------------------- INTRODUCTION ---------------------------------------------------------------------------------------------


What is python ? Why to use python ?

Python is an easy and simple programming language. It is used for creating web apps, games, and even
huge and complicated systems   like search engineers.

Python is really easiy to code.

let take a look why python is easy Smile
 
 Ex. Let's print "HelloWorld !"


 ==> code in java



Code:
class HelloWorldApp {
    public static void main(String[]args) {
       System.out.println("Hello World!");//Display the string.
 }
}



==> code in  C ++



Code:
#include <iostream>
int main(){
std::cout << "Hello World!;
}


==> code in python Heart


Code:
print"Hello World!"


As you can see python has only ne line code and also it is easy to understand. So python is easy and simple to understand.

This is only introduction, further tutorials will be comin soon.......!
I like Java more than Python -.-