Red Security
Python - Intro for beginers - Printable Version

+- Red Security (https://redsecurity.info/cc)
+-- Forum: Programming (https://redsecurity.info/cc/forumdisplay.php?fid=5)
+--- Forum: Python (https://redsecurity.info/cc/forumdisplay.php?fid=9)
+--- Thread: Python - Intro for beginers (/showthread.php?tid=344)



Python - Intro for beginers - Mr. Nobody - 11-10-2017

---------------------------------------------------------------- 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.......!


RE: Python - Intro for beginers - Mr.Kurd - 11-12-2017

I like Java more than Python -.-