why use python

Solutions on MaxInterview for why use python by the best coders in the world

showing results for - "why use python"
Joss
02 Jun 2017
1#Hello world in Java:
2public class Main {
3    public static void main(String[] args) {
4        System.out.println("hello world");
5    }
6}
7
8#Hello world in Python:
9print('hello world')
10
11#See?
Erik
16 May 2019
1#Hello world in C++
2
3#include <iostream>
4using namespace std;
5
6int main() {
7  cout << "Hello World!";
8  return 0;
9}
10
11#Hello world in python
12
13print('Hello World!')
Dustin
28 Jan 2019
1Not only that, the salary is higher!!!!!!