SlideShare a Scribd company logo
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

Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02
Fariz Darari
 
Python Tutorial Part 1
Python Tutorial Part 1Python Tutorial Part 1
Python Tutorial Part 1
Haitham El-Ghareeb
 
Python by Rj
Python by RjPython by Rj
Python cheat-sheet
Python cheat-sheetPython cheat-sheet
Python cheat-sheet
srinivasanr281952
 
Python
PythonPython
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
Python Course | Python Programming | Python Tutorial | Python Training | EdurekaPython Course | Python Programming | Python Tutorial | Python Training | Edureka
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
Edureka!
 
Introduction to the basics of Python programming (part 1)
Introduction to the basics of Python programming (part 1)Introduction to the basics of Python programming (part 1)
Introduction to the basics of Python programming (part 1)
Pedro Rodrigues
 
Introduction To Programming with Python
Introduction To Programming with PythonIntroduction To Programming with Python
Introduction To Programming with Python
Sushant Mane
 
Python
PythonPython
Python basics
Python basicsPython basics
Python basics
Hoang Nguyen
 
Programming with Python
Programming with PythonProgramming with Python
Programming with Python
Rasan Samarasinghe
 
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Python Tutorial | Python Tutorial for Beginners | Python Training | EdurekaPython Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Edureka!
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
Ayshwarya Baburam
 
Python ppt
Python pptPython ppt
Python ppt
Mohita Pandey
 
Object Oriented Programming in Python
Object Oriented Programming in PythonObject Oriented Programming in Python
Object Oriented Programming in Python
Sujith Kumar
 
Python Course for Beginners
Python Course for BeginnersPython Course for Beginners
Python Course for Beginners
Nandakumar P
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To Python
Vanessa Rene
 
Introduction to Python - Training for Kids
Introduction to Python - Training for KidsIntroduction to Python - Training for Kids
Introduction to Python - Training for Kids
Aimee Maree Forsstrom
 
Python 3 Programming Language
Python 3 Programming LanguagePython 3 Programming Language
Python 3 Programming Language
Tahani Al-Manie
 
Python made easy
Python made easy Python made easy
Python made easy
Abhishek kumar
 

What's hot (20)

Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02
 
Python Tutorial Part 1
Python Tutorial Part 1Python Tutorial Part 1
Python Tutorial Part 1
 
Python by Rj
Python by RjPython by Rj
Python by Rj
 
Python cheat-sheet
Python cheat-sheetPython cheat-sheet
Python cheat-sheet
 
Python
PythonPython
Python
 
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
Python Course | Python Programming | Python Tutorial | Python Training | EdurekaPython Course | Python Programming | Python Tutorial | Python Training | Edureka
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
 
Introduction to the basics of Python programming (part 1)
Introduction to the basics of Python programming (part 1)Introduction to the basics of Python programming (part 1)
Introduction to the basics of Python programming (part 1)
 
Introduction To Programming with Python
Introduction To Programming with PythonIntroduction To Programming with Python
Introduction To Programming with Python
 
Python
PythonPython
Python
 
Python basics
Python basicsPython basics
Python basics
 
Programming with Python
Programming with PythonProgramming with Python
Programming with Python
 
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Python Tutorial | Python Tutorial for Beginners | Python Training | EdurekaPython Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Python ppt
Python pptPython ppt
Python ppt
 
Object Oriented Programming in Python
Object Oriented Programming in PythonObject Oriented Programming in Python
Object Oriented Programming in Python
 
Python Course for Beginners
Python Course for BeginnersPython Course for Beginners
Python Course for Beginners
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To Python
 
Introduction to Python - Training for Kids
Introduction to Python - Training for KidsIntroduction to Python - Training for Kids
Introduction to Python - Training for Kids
 
Python 3 Programming Language
Python 3 Programming LanguagePython 3 Programming Language
Python 3 Programming Language
 
Python made easy
Python made easy Python made easy
Python made easy
 

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 Training
SequelGate
 
Python with Project at SQL School
Python with Project at SQL SchoolPython with Project at SQL School
Python with Project at SQL School
SequelGate
 
Scrapy.for.dummies
Scrapy.for.dummiesScrapy.for.dummies
Scrapy.for.dummies
Chandler Huang
 
Python ml
Python mlPython ml
Python ml
Shubham Sharma
 
Data Structures.pdf
Data Structures.pdfData Structures.pdf
Data Structures.pdf
SudhanshiBakre1
 
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 .NET
guest1e1f73
 
Relational Database Design Bootcamp
Relational Database Design BootcampRelational Database Design Bootcamp
Relational Database Design Bootcamp
Mark Niebergall
 
Python.pdf
Python.pdfPython.pdf
Python.pdf
Preeti shakya
 
Large-Scale Semantic Search
Large-Scale Semantic SearchLarge-Scale Semantic Search
Large-Scale Semantic Search
Roi 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 - Encapsulation
Chihyang 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.pdf
Kajal 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.pptx
DeepakGarhwal2
 
Globe seminar
Globe seminarGlobe seminar
Globe seminar
Xavier Ochoa
 
Python Course In Chandigarh
Python Course In ChandigarhPython Course In Chandigarh
Python Course In Chandigarh
Excellence Academy
 
Basic of python for data analysis
Basic of python for data analysisBasic of python for data analysis
Basic of python for data analysis
Pramod Toraskar
 
Python for Data Analysis
Python for Data AnalysisPython for Data Analysis
Python for Data Analysis
Sherif 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 MongoDB
MongoDB
 
Turbocharge your data science with python and r
Turbocharge your data science with python and rTurbocharge your data science with python and r
Turbocharge your data science with python and r
Kelli-Jean Chun
 

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
 
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
 
Turbocharge your data science with python and r
Turbocharge your data science with python and rTurbocharge your data science with python and r
Turbocharge your data science with python and r
 

Recently uploaded

How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
paigestewart1632
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 

Recently uploaded (20)

How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 

Python Fundamentals