why python ? and what is the importance of python
We have lot of programming languages.
But python is more popular. Let’s discuss importance here with simple example.
I want to print hello with different programing languages
1. Java:
public class HelloWorld{
public static void main(String []args){
System.out.println("Hello");
}
}
2. C :
#include <stdio.h>
int main() {
printf("Hello");
return 0;
}
3. C# :
using System;
class HelloWorld{
static void Main(){
System.Console.WriteLine("Hello");
}
}
4. Python :
print 'Hello’ — -> Python 2
print (’Hello’) — -> python 2 and python 3
I think you understand, based on above examples , we need not to import any pre defined functions.
Why Python ?
- Flexible Language
- Less Complex, Less Time
- Supporting all Data Bases ( Oracle, MySQL, Sql Server ..etc..)
- Supports OOPS ( Object-oriented programming System) Concepts
- High level Scripting Language.
Applications :
1.Web Development( Django, flask)
2. Game Development
3. Machine Learning and Artificial Intelligence
4.Data Science and Data Visualization
5. Web Scraping Applications
6. Automation
7. Home Automation ( IOT, Raspberry Pi)
YouTube Link: Why Python so popular with Developers
