What is Python..?
Python is a widely used interpreted & object-oriented
programming language.
Introduced to the world in the year 1991 by Guido van
Rossum.
Python 0.9.0 was released in 1991.
Python 1.0 was released in 1994.
Why Python ?
Why Python ..?
• Machine Learning :
- making prediction on unseen data
- Sub-Field of Artificial Intelligence(AI)
- teaches machines how to carry out task by
themselves
• Data science:
- extraction of hidden information from data
• Building Web applications using Django Framework
Deep Learning
• is a machine learning technique.
• Google Assistant voice recognition AI uses
deep learning .
• work better on images, videos, and audio.
ML Applications
• Speech and Handwriting recognition
• Medical diagnosis
• Search engines
• Video games
• Online recommenders
• Credit card Fraud detections
• E-mail Spam filtering
• Chabot in customer service
• Sentiment analysis
• Self driving google car
• …….
Data Science
• Include extract knowledge or hidden
information from data
• Two major parts of Data science
Data Science
Analysis of large Making Prediction (ML)
amount of data on unseen or future data
C Python
#include <stdio.h>
int main() print “Hello World”
{
printf("Hello world");
return 0;
}
C++ Python
#include<iostream>
using namespace std; print “Hello World”
int main()
{
cout << "Hello World!";
return 0;
}
Java Python
public class HelloWorld
{
public static void main(String[ ] args)
{ print “Hello World”
System.out.println("Hello, World");
}
C# Python
using System;
namespace HelloWorldApplication
{
class Program
{ print “Hello World”
static void Main(string[ ] args)
{
Console.WriteLine("Hello,
world!");
Console.ReadKey();
}
}
}
Django is a web framework that helps in building web
applications or websites.
can be used to easily program the back end of a website.
Django ORM feature is a powerful database tool and
supports multiple databases - MySQL, PostgreSQL, Oracle &
SQLite are all supported.
Some well-known sites that use Django include…
Pinterest, Mozilla, Instagram, The Washington Times…etc
It follows MVC
Used for higher level web applications
Multilingual Support means we can develop our website,
which would support multiple languages.
Development Environment − Django comes with a
lightweight web server to facilitate end-to-end application
development and testing.