SlideShare a Scribd company logo
1 of 150
Download to read offline
Python Fundamentals
Sherif Rasmy
• Python Core Language
• Python Object Oriented Programming
• Python Functional Programming
Python Snippets Series
Contents
Sherif Rasmy 2Python Fundamentals - Overview
• Python Core Language
• Python Object Oriented Programming
• Python Functional Programming
o Data Types: Objects, Numbers, String, Datetime, Bool, None
o Data Structures: Lists, Dictionaries, Sets, Composites, Memory Model, BigO
o Language: Functions, Exceptions, Statements
o Standard Libraries: Files, sys and os, csv, json, math, statistics
o Software Architecture, Object Orientated Design Principles, Classes,
Inheritance, Composition, Dunder Methods
o Functional Design Principles, Higher-Order Functions, Sorting, Filtering,
Mapping, Reducing, Iterators, Generators, Closures, Decorators, Recursion
Python Fundamentals
Sherif Rasmy
Core Data Types
Objects, Numbers, String, Datetime, Bool, None
Objects
Sherif Rasmy 2Python Fundamentals – Core Data Types
Objects
Sherif Rasmy 3Python Fundamentals – Core Data Types
Objects
Sherif Rasmy 4Python Fundamentals – Core Data Types
Objects
Sherif Rasmy 5Python Fundamentals – Core Data Types
Objects
Sherif Rasmy 6Python Fundamentals – Core Data Types
Numbers
Sherif Rasmy 7Python Fundamentals – Core Data Types
Numbers
Sherif Rasmy 8Python Fundamentals – Core Data Types
Numbers
Sherif Rasmy 9Python Fundamentals – Core Data Types
Numbers
Sherif Rasmy 10Python Fundamentals – Core Data Types
String
Sherif Rasmy 11Python Fundamentals – Core Data Types
String
Sherif Rasmy 12Python Fundamentals – Core Data Types
String
Sherif Rasmy 13Python Fundamentals – Core Data Types
String
Sherif Rasmy 14Python Fundamentals – Core Data Types
String
Sherif Rasmy 15Python Fundamentals – Core Data Types
String
Sherif Rasmy 16Python Fundamentals – Core Data Types
ASCII Codes
http://www.asciitable.com/
Datetime
Sherif Rasmy 17Python Fundamentals – Core Data Types
Datetime
Sherif Rasmy 18Python Fundamentals – Core Data Types
Datetime
Sherif Rasmy 19Python Fundamentals – Core Data Types
Datetime
Sherif Rasmy 20Python Fundamentals – Core Data Types
Datetime
Sherif Rasmy 21Python Fundamentals – Core Data Types
Datetime
Sherif Rasmy 22Python Fundamentals – Core Data Types
Boolean
Sherif Rasmy 23Python Fundamentals – Core Data Types
Boolean
Sherif Rasmy 24Python Fundamentals – Core Data Types
None
Sherif Rasmy 25Python Fundamentals – Core Data Types
Python Fundamentals
Sherif Rasmy
Core Data Structures
Lists, Dictionaries, Sets, Composites, Memory Model, BigO
Lists
Sherif Rasmy 2Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 3Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 4Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 5Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 6Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 7Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 8Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 9Python Fundamentals – Core Data Structures
Lists
Sherif Rasmy 10Python Fundamentals – Core Data Structures
Dictionaries
Sherif Rasmy 11Python Fundamentals – Core Data Structures
Dictionaries
Sherif Rasmy 12Python Fundamentals – Core Data Structures
Dictionaries
Sherif Rasmy 13Python Fundamentals – Core Data Structures
Dictionaries
Sherif Rasmy 14Python Fundamentals – Core Data Structures
Dictionaries
Sherif Rasmy 15Python Fundamentals – Core Data Structures
Sets
Sherif Rasmy 16Python Fundamentals – Core Data Structures
Sets
Sherif Rasmy 17Python Fundamentals – Core Data Structures
Sets
Sherif Rasmy 18Python Fundamentals – Core Data Structures
Sets
Sherif Rasmy 19Python Fundamentals – Core Data Structures
Sets
Sherif Rasmy 20Python Fundamentals – Core Data Structures
Composites
Sherif Rasmy 21Python Fundamentals – Core Data Structures
Composites
Sherif Rasmy 22Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 23Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 24Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 25Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 26Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 27Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 28Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 29Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 30Python Fundamentals – Core Data Structures
Memory Model
Sherif Rasmy 31Python Fundamentals – Core Data Structures
Big O Notation
Sherif Rasmy 32Python Misc. Topics
https://www.bigocheatsheet.com/
Big O Notation
Sherif Rasmy 33Python Misc. Topics
Big O Notation
Sherif Rasmy 34Python Misc. Topics
Python Fundamentals
Sherif Rasmy
Core Language
Functions, Exceptions, Statements
Functions
Sherif Rasmy 2Python Fundamentals – Core Language
Functions
Sherif Rasmy 3Python Fundamentals – Core Language
Functions
Sherif Rasmy 4Python Fundamentals – Core Language
Functions
Sherif Rasmy 5Python Fundamentals – Core Language
Functions
Sherif Rasmy 6Python Fundamentals – Core Language
Exceptions
Sherif Rasmy 7Python Fundamentals – Core Language
Exceptions
Sherif Rasmy 8Python Fundamentals – Core Language
Exceptions
Sherif Rasmy 9Python Fundamentals – Core Language
https://docs.python.org/3/library/exceptions.html
Exceptions
Sherif Rasmy 10Python Fundamentals – Core Language
Statements
Sherif Rasmy 11Python Fundamentals – Core Language
Statements
Sherif Rasmy 12Python Fundamentals – Core Language
Statements
Sherif Rasmy 13Python Fundamentals – Core Language
Python Fundamentals
Sherif Rasmy
Core Standard Libraries
Files, sys & os, csv, json, math, statistics
Files
Sherif Rasmy 2Python Fundamentals – Core Standard Libraries
Files
Sherif Rasmy 3Python Fundamentals – Core Standard Libraries
Files
Sherif Rasmy 4Python Fundamentals – Core Standard Libraries
sys and os
Sherif Rasmy 5Python Fundamentals – Core Standard Libraries
sys and os
Sherif Rasmy 6Python Fundamentals – Core Standard Libraries
sys and os
Sherif Rasmy 7Python Fundamentals – Core Standard Libraries
sys and os
Sherif Rasmy 8Python Fundamentals – Core Standard Libraries
csv
Sherif Rasmy 9Python Fundamentals – Core Standard Libraries
csv
Sherif Rasmy 10Python Fundamentals – Core Standard Libraries
csv
Sherif Rasmy 11Python Fundamentals – Core Standard Libraries
json
Sherif Rasmy 12Python Fundamentals – Core Standard Libraries
The json Module
Sherif Rasmy 13Python Fundamentals – Core Standard Libraries
The math Module
Sherif Rasmy 14Python Fundamentals – Core Standard Libraries
The math Module
Sherif Rasmy 15Python Fundamentals – Core Standard Libraries
statistics
Sherif Rasmy 16Python Fundamentals – Core Standard Libraries
Setting Up Projects in PyCharm & Running from Command Prompt
Sherif Rasmy 17Python Fundamentals – Core Standard Libraries
Sherif Rasmy
Object Orientated Design Principles, Classes, Inheritance, Composition, Dunder Methods
Python Fundamentals
Object Oriented Programming
Software Architecture
• Software architecture describes a system through its architectural
elements. Elements description may include:
✓ The elements structure and behavior
✓ The design principles elements emphasize, and
✓ The qualities elements realize into the architecture.
• Architectural elements can be classified into:
✓ Data elements that contain information, and
✓ Processing elements that operate on data elements
• Processing elements can be classified further according to the nature
of their processing into components and connectors:
✓ Components encapsulate application logic that transforms/alters data. Business
objects are typical examples of components
✓ Connectors encapsulate logic that formats and routes data between
components and other connectors; they do not alter the data . Decorators,
proxies, adapters, and data access objects are examples of connectors
Sherif Rasmy 2Python Fundamentals - Object Oriented Programming
• The structure of elements refers to their interfaces, compositions, and relationships.
• The behavior of elements refers to their communication, interaction, control flow, exchange of messages, and state changes over time.
• Design principles refer to guidelines that elements seek to emphasize by imposing constraints on their structure and behavior.
• Architecture qualities refer to those properties, goals, non-functional attributes, and service level objectives collectively realized by the
final structure and behavior of all architectural elements
Software Architecture
Object Oriented Design Principles
Sherif Rasmy 3Python Fundamentals - Object Oriented Programming
Abstraction – refers to identifying concepts within a domain as objects. Abstraction can be viewed as the activity of defining at an abstract level the essential
characteristics of objects that distinguish them from other objects, as well as providing crisp conceptual boundaries between them
• Object Oriented Design Principles
Refer to guidelines that objects seek to emphasize by imposing constraints on their structure and behavior in order to realize
desired architecture qualities. The key OOP design principles include:
Encapsulation – refers to compartmentalizing the characteristics of abstractions at a more comprehensive level. Encapsulation can be viewed as the activity of
uncovering more details regarding the information and behavior of the objects, as well as defining each objects’ interface, roles and responsibilities.
• Object Orientated Architecture
Refers to an architecture that realizes its elements through objects. Objects are used to construct both data and processing elements
Hierarchy – refers to the ranking or ordering of abstractions. Hierarchy can be viewed as the activity of defining the relationships and dependencies between
objects. The key types of relationships in OO includes Inheritance (IS-A relationship), Composition (HAS-A relationship) and Association (USES relationship)
Polymorphism – refers to the ability of objects to respond differently when receiving the same message (method call). Polymorphism allows for creating
generalized objects that share common features but allow specialized objects to respond differently because of their unique characteristics. In OO, Polymorphism
is achieved through method and operator overloading as well as method overriding which is facilitated through Inheritance
Modularity – refers to organizing architectural elements into as a set of cohesive, loosely coupled objects, modules and packages It should be noted that
Modularity is a common principle that is not specific to OO.
• Object Oriented Architecture Qualities
Refer to those properties, goals, non-functional attributes collectively realized through the structure and behavior of the objects. The key
qualities OO seek to emphasize include: Extensibility, Reusability, Robustness, Maintainability, Learnability, and Testability
Object Oriented Design Principles
Sherif Rasmy 4Python Fundamentals - Object Oriented Programming
Customer Relationship
Abstraction – Encapsulation – Hierarchy – Polymorphism – Modularity
Order Management Geometry
Classes
Sherif Rasmy 5Python Fundamentals - Object Oriented Programming
Classes
Sherif Rasmy 6Python Fundamentals - Object Oriented Programming
Classes
Sherif Rasmy 7Python Fundamentals - Object Oriented Programming
Classes
Sherif Rasmy 8Python Fundamentals - Object Oriented Programming
Classes
Sherif Rasmy 9Python Fundamentals - Object Oriented Programming
Classes
Sherif Rasmy 10Python Fundamentals - Object Oriented Programming
Inheritance
Sherif Rasmy 11Python Fundamentals - Object Oriented Programming
Inheritance
Sherif Rasmy 12Python Fundamentals - Object Oriented Programming
Inheritance
Sherif Rasmy 13Python Fundamentals - Object Oriented Programming
Inheritance
Sherif Rasmy 14Python Fundamentals - Object Oriented Programming
Composition
Sherif Rasmy 15Python Fundamentals - Object Oriented Programming
Composition
Sherif Rasmy 16Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 17Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 18Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 19Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 20Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 21Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 22Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 23Python Fundamentals - Object Oriented Programming
Dunders
Sherif Rasmy 24Python Fundamentals - Object Oriented Programming
Sherif Rasmy
Functional Design Principles, Higher-Order Functions, Sorting, Filtering,
Mapping, Reducing, Iterators, Generators, Closures, Decorators, Recursion
Python Fundamentals
Functional Programming
Software Architecture
• Software architecture describes a system through its architectural
elements. Elements description may include:
✓ The elements structure and behavior
✓ The design principles elements emphasize, and
✓ The qualities elements realize into the architecture.
• Architectural elements can be classified into:
✓ Data elements that contain information, and
✓ Processing elements that operate on data elements
• Processing elements can be classified further according to the nature
of their processing into components and connectors:
✓ Components encapsulate application logic that transforms/alters data. Business
objects are typical examples of components
✓ Connectors encapsulate logic that formats and routes data between
components and other connectors; they do not alter the data . Decorators,
proxies, adapters, and data access objects are examples of connectors
Sherif Rasmy 2Python Functional Programming
• The structure of elements refers to their interfaces, compositions, and relationships.
• The behavior of elements refers to their communication, interaction, control flow, exchange of messages, and state changes over time.
• Design principles refer to guidelines that elements seek to emphasize by imposing constraints on their structure and behavior.
• Architecture qualities refer to those properties, goals, non-functional attributes, and service level objectives collectively realized by the
final structure and behavior of all architectural elements
Software Architecture
Functional Programming Design Principles
Sherif Rasmy 3Python Functional Programming
Higher Order Functions – requires functions to have the capability of being assigned to variables and passed as arguments to other functions.
• Functional Programming Design Principles refer to guidelines that functions seek to emphasize by imposing constraints on their
structure and behavior in order to realize desired architecture qualities. The key Functional Programming design principles
include:
Purity or Side-Effect-Free – requires functions not to modify data elements outside of its scope. A function that modifies the state (value) of an argument passed to
it, or any global variable, or even write to an external resource like a file/database is considered not pure.
• Functional Oriented Architecture refers to an architecture that realizes its processing elements through functions.
Referential Transparency – requires functions to accept at least one argument and return a value provided that returned value be the same when the function is
re-called with the same argument(s). A function that reads data from global variables/resource or calls a non-functional function is considered to be not
referentially transparency.
Misc. – Functional functions should always return the same type, return no nulls, and not throw exceptions
• Functional Programming Architecture Qualities refer to those properties, goals, non-functional attributes, collectively realized through the
structure and behavior of functions. The key qualities FP seeks to emphasize include: Performance, Reusability, Predictability, Testability
• Functional Programming Motivation Side-Effect free functions are easier to understand and to predict their behavior. Side-Effect free
functions also facilitate using multi-core parallelism without using locking., because functions no longer interfere with each other. Referential
transparency facilitates save-instead-of-recompute optimization for expensive long-lived operations; this falls under memorization or caching
Higher Order Functions
Sherif Rasmy 4Python Functional Programming
Higher Order Functions
Sherif Rasmy 5Python Functional Programming
Higher Order Functions
Sherif Rasmy 6Python Functional Programming
Higher Order Functions
Sherif Rasmy 7Python Functional Programming
Higher Order Functions
Sherif Rasmy 8Python Functional Programming
Higher Order Functions
Sherif Rasmy 9Python Functional Programming
Python map() Function
Sherif Rasmy 10Python Functional Programming
Python map() Function
Sherif Rasmy 11Python Functional Programming
Python reduce() Function
Sherif Rasmy 12Python Functional Programming
Python reduce() Function
Sherif Rasmy 13Python Functional Programming
Python filter() Function
Sherif Rasmy 14Python Functional Programming
Python sorted() Function
Sherif Rasmy 15Python Functional Programming
Python sorted() Function
Sherif Rasmy 16Python Functional Programming
Python sorted() Function
Sherif Rasmy 17Python Functional Programming
Iterators
Sherif Rasmy 18Python Functional Programming
Iterators
Sherif Rasmy 19Python Functional Programming
Iterators
Sherif Rasmy 20Python Functional Programming
Iterators
Sherif Rasmy 21Python Functional Programming
Generators
Sherif Rasmy 22Python Functional Programming
Generators
Sherif Rasmy 23Python Functional Programming
Closures
Sherif Rasmy 24Python Functional Programming
Closures
Sherif Rasmy 25Python Functional Programming
Closures
Sherif Rasmy 26Python Functional Programming
Closures
Sherif Rasmy 27Python Functional Programming
Closures
Sherif Rasmy 28Python Functional Programming
Closures
Sherif Rasmy 29Python Functional Programming
Closures
Sherif Rasmy 30Python Functional Programming
Decorators
Sherif Rasmy 31Python Functional Programming
Decorators
Sherif Rasmy 32Python Functional Programming
Recursion
Sherif Rasmy 33Python Misc. Topics
Recursion
Sherif Rasmy 34Python Misc. Topics
Recursion
Sherif Rasmy 35Python Misc. Topics

More Related Content

What's hot

What is Python JSON | Edureka
What is Python JSON | EdurekaWhat is Python JSON | Edureka
What is Python JSON | EdurekaEdureka!
 
Python Basics | Python Tutorial | Edureka
Python Basics | Python Tutorial | EdurekaPython Basics | Python Tutorial | Edureka
Python Basics | Python Tutorial | EdurekaEdureka!
 
2. python basic syntax
2. python   basic syntax2. python   basic syntax
2. python basic syntaxSoba Arjun
 
Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in pythoneShikshak
 
Learn 90% of Python in 90 Minutes
Learn 90% of Python in 90 MinutesLearn 90% of Python in 90 Minutes
Learn 90% of Python in 90 MinutesMatt Harrison
 
Python Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard WayPython Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard WayUtkarsh Sengar
 
Fundamentals of Python Programming
Fundamentals of Python ProgrammingFundamentals of Python Programming
Fundamentals of Python ProgrammingKamal Acharya
 
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...Edureka!
 
Python Class | Python Programming | Python Tutorial | Edureka
Python Class | Python Programming | Python Tutorial | EdurekaPython Class | Python Programming | Python Tutorial | Edureka
Python Class | Python Programming | Python Tutorial | EdurekaEdureka!
 
Presentation on python
Presentation on pythonPresentation on python
Presentation on pythonwilliam john
 
Python-00 | Introduction and installing
Python-00 | Introduction and installingPython-00 | Introduction and installing
Python-00 | Introduction and installingMohd Sajjad
 

What's hot (20)

What is Python JSON | Edureka
What is Python JSON | EdurekaWhat is Python JSON | Edureka
What is Python JSON | Edureka
 
Python programming
Python  programmingPython  programming
Python programming
 
Python Basics | Python Tutorial | Edureka
Python Basics | Python Tutorial | EdurekaPython Basics | Python Tutorial | Edureka
Python Basics | Python Tutorial | Edureka
 
Python Tutorial Part 2
Python Tutorial Part 2Python Tutorial Part 2
Python Tutorial Part 2
 
Programming with Python
Programming with PythonProgramming with Python
Programming with Python
 
2. python basic syntax
2. python   basic syntax2. python   basic syntax
2. python basic syntax
 
Python Tutorial Part 1
Python Tutorial Part 1Python Tutorial Part 1
Python Tutorial Part 1
 
Python
PythonPython
Python
 
Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in python
 
Learn 90% of Python in 90 Minutes
Learn 90% of Python in 90 MinutesLearn 90% of Python in 90 Minutes
Learn 90% of Python in 90 Minutes
 
Python Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard WayPython Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard Way
 
Fundamentals of Python Programming
Fundamentals of Python ProgrammingFundamentals of Python Programming
Fundamentals of Python Programming
 
Python Programming Essentials - M31 - PEP 8
Python Programming Essentials - M31 - PEP 8Python Programming Essentials - M31 - PEP 8
Python Programming Essentials - M31 - PEP 8
 
Python Basics.pdf
Python Basics.pdfPython Basics.pdf
Python Basics.pdf
 
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
Python Tutorial For Beginners | Python Crash Course - Python Programming Lang...
 
Python Class | Python Programming | Python Tutorial | Edureka
Python Class | Python Programming | Python Tutorial | EdurekaPython Class | Python Programming | Python Tutorial | Edureka
Python Class | Python Programming | Python Tutorial | Edureka
 
Presentation on python
Presentation on pythonPresentation on python
Presentation on python
 
Python-00 | Introduction and installing
Python-00 | Introduction and installingPython-00 | Introduction and installing
Python-00 | Introduction and installing
 
Python basics
Python basicsPython basics
Python basics
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 

Similar to Python Fundamentals

Data Science Fundamentals with Python and SQL Training
Data Science Fundamentals with Python and SQL TrainingData Science Fundamentals with Python and SQL Training
Data Science Fundamentals with Python and SQL TrainingSequelGate
 
Python with Project at SQL School
Python with Project at SQL SchoolPython with Project at SQL School
Python with Project at SQL SchoolSequelGate
 
Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ...
 Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ... Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ...
Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ...Vladimir Alexiev, PhD, PMP
 
NHibernate for .NET
NHibernate for .NETNHibernate for .NET
NHibernate for .NETguest1e1f73
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To PythonVanessa Rene
 
Relational Database Design Bootcamp
Relational Database Design BootcampRelational Database Design Bootcamp
Relational Database Design BootcampMark Niebergall
 
Large-Scale Semantic Search
Large-Scale Semantic SearchLarge-Scale Semantic Search
Large-Scale Semantic SearchRoi Blanco
 
Object Oriented Programming in Swift Ch0 - Encapsulation
Object Oriented Programming in Swift Ch0 - EncapsulationObject Oriented Programming in Swift Ch0 - Encapsulation
Object Oriented Programming in Swift Ch0 - EncapsulationChihyang Li
 
FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...
FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...
FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...Joseph Alaimo Jr
 
Mastering Python Programming.pdf
Mastering Python Programming.pdfMastering Python Programming.pdf
Mastering Python Programming.pdfKajal Digital
 
Roadmap To Become A Python Developer.pptx
Roadmap To Become A Python Developer.pptxRoadmap To Become A Python Developer.pptx
Roadmap To Become A Python Developer.pptxDeepakGarhwal2
 
Basic of python for data analysis
Basic of python for data analysisBasic of python for data analysis
Basic of python for data analysisPramod Toraskar
 
Python for Data Analysis
Python for Data AnalysisPython for Data Analysis
Python for Data AnalysisSherif Rasmy
 
MongoDB Days Germany: Data Processing with MongoDB
MongoDB Days Germany: Data Processing with MongoDBMongoDB Days Germany: Data Processing with MongoDB
MongoDB Days Germany: Data Processing with MongoDBMongoDB
 

Similar to Python Fundamentals (20)

Data Science Fundamentals with Python and SQL Training
Data Science Fundamentals with Python and SQL TrainingData Science Fundamentals with Python and SQL Training
Data Science Fundamentals with Python and SQL Training
 
Python with Project at SQL School
Python with Project at SQL SchoolPython with Project at SQL School
Python with Project at SQL School
 
Scrapy.for.dummies
Scrapy.for.dummiesScrapy.for.dummies
Scrapy.for.dummies
 
Python ml
Python mlPython ml
Python ml
 
Data Structures.pdf
Data Structures.pdfData Structures.pdf
Data Structures.pdf
 
Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ...
 Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ... Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ...
Large-scale Reasoning with a Complex Cultural Heritage Ontology (CIDOC CRM) ...
 
NHibernate for .NET
NHibernate for .NETNHibernate for .NET
NHibernate for .NET
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To Python
 
Relational Database Design Bootcamp
Relational Database Design BootcampRelational Database Design Bootcamp
Relational Database Design Bootcamp
 
Python.pdf
Python.pdfPython.pdf
Python.pdf
 
Large-Scale Semantic Search
Large-Scale Semantic SearchLarge-Scale Semantic Search
Large-Scale Semantic Search
 
Object Oriented Programming in Swift Ch0 - Encapsulation
Object Oriented Programming in Swift Ch0 - EncapsulationObject Oriented Programming in Swift Ch0 - Encapsulation
Object Oriented Programming in Swift Ch0 - Encapsulation
 
FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...
FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...
FDMEE Scripting - Cloud and On-Premises - It Ain't Groovy, But It's My Bread ...
 
Mastering Python Programming.pdf
Mastering Python Programming.pdfMastering Python Programming.pdf
Mastering Python Programming.pdf
 
Roadmap To Become A Python Developer.pptx
Roadmap To Become A Python Developer.pptxRoadmap To Become A Python Developer.pptx
Roadmap To Become A Python Developer.pptx
 
Globe seminar
Globe seminarGlobe seminar
Globe seminar
 
Python Course In Chandigarh
Python Course In ChandigarhPython Course In Chandigarh
Python Course In Chandigarh
 
Basic of python for data analysis
Basic of python for data analysisBasic of python for data analysis
Basic of python for data analysis
 
Python for Data Analysis
Python for Data AnalysisPython for Data Analysis
Python for Data Analysis
 
MongoDB Days Germany: Data Processing with MongoDB
MongoDB Days Germany: Data Processing with MongoDBMongoDB Days Germany: Data Processing with MongoDB
MongoDB Days Germany: Data Processing with MongoDB
 

Recently uploaded

Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 

Recently uploaded (20)

Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 

Python Fundamentals