Python | Language Fundamentals
Python | Language Fundamentals | Introduction | Features of Python | Flavors of Python | Identifiers | Reserved Words
- Python is a general-purpose high-level programming language.
- Python was developed by Guido Van Rossum in 1989 while working at National Research Institute in the Netherlands.
- But officially Python was made available to the public in 1991. The official Date of Birth for Python is Feb 20th, 1991.
- Python is recommended as the first programming language for beginners.
Java:
class FirstProgram {
public static void main(String args[]){
System.out.println("Hello World")
}
}
C Language:
#include<stdio.h>
void main(){
printf("Hello World");
}
Python
print("Hello World")
- Functional Programming Features from C
-
Object Oriented Programming Features from C++.
-
Scripting Language Features from Perl and Shell Script.
-
Modular Programming Features from Modula-3
- For developing Desktop Applications
- For developing web Applications
- For developing database Applications
- For Network Programming
- For developing games
- For Data Analysis Applications
- For Machine Learning
- For developing Artificial Intelligence Applications
- For IoT