why is python called python code example
Example 1: 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?
Example 2: what is python
Python is an interpreted, high-level, general-purpose programming language.
Created by Guido van Rossum and first released in 1991, Python's design
philosophy emphasizes code readability with its notable use of significant
whitespace.
Example 3: Why is Python called Python
It was named after Monty Python, not the snake!
SNAKE!
Example 4: 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!')