Answers for "why use python"

C++
7

why use python

#Hello world in Java:
public class Main {
    public static void main(String[] args) {
        System.out.println("hello world");
    }
}

#Hello world in Python:
print('hello world')

#See?
Posted by: Guest on June-11-2020
0

why use python

#Hello world in C++

#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!";
  return 0;
}

#Hello world in python

print('Hello World!')
Posted by: Guest on April-05-2021
0

why use python

Not only that, the salary is higher!!!!!!
Posted by: Guest on April-05-2021

Browse Popular Code Answers by Language