Getting a Theme


For getting the theme of Python, kindly go through my previous article,

Introduction


In this second part we will learn about Python and several other programming languages. We will compare several programming languages with Python using some basis concepts and examples.
So let's explore them, one by one.

Python VS Java

Example

Snippet | Python

  1. Print (“GoodBye World!”)
Snippet | Java
  1. public class GoodByeWorld {
  2. public static void main(String[] args)
  3. {
  4. System.out.println("GoodBye World!");
  5. }
  6. }
Output
GoodBye World

Python VS C++

Example

Snippet | Python
  1. Print (“GoodBye World!”)
Snippet | C++
  1. #include <iostream>
  2. void main()
  3. {
  4. cout << "GoodBye World!";
  5. }
Output
GoodBye World

Python VS Perl

Example

Snippet | Python
  1. Print (“GoodBye World!”)
Snippet | Perl
  1. print "GoodBye World!";
Output
GoodBye World

Python VS JavaScript

Example

Snippet | Python
  1. Print (“GoodBye World!”)
Snippet | JavaScript
  1. <html>
  2. <head></head>
  3. <body>
  4. <script>
  5. alert('GoodBye, World!')
  6. </script>
  7. </body>
  8. </html>
Output
GoodBye World

Python VS TCL

Example

Snippet | Python

  1. Print (“GoodBye World!”)
Snippet | TCL
  1. $ vim GoodByeWorld.tcl
  2. puts "GoodBye World!"
Output
GoodBye World

Python VS Smalltalk

Example

Snippet | Python
  1. Print (“GoodBye World!”)
Snippet | Smalltalk
  1. #include <stdio.h>
  2. void main()
  3. {
  4. printf("GoodBye World");
  5. }
Output
GoodBye World!

Python VS PHP

Example

Snippet | Python
  1. Print (“GoodBye World!”)
Snippet | PHP
  1. <html>
  2. <head>
  3. <title>PHP Test</title>
  4. </head>
  5. <body>
  6. <?php echo '
  7. <p> GoodBye World!</p>'; ?>
  8. </body>
  9. </html>
Output
GoodBye World!

Guidelines from my Side

Moto

“Keep calm and code Python”.

I tried to make it interesting and an interactive article and I wish you guys will like that, meanwhile if you have any suggestions then your welcome.

Until the next part, keep sharing.
<<Prev Part Next Part>>