SlideShare ist ein Scribd-Unternehmen logo
1 von 56
By,
Shashidhar T Halakatti
PGDCA,MSc(IT),MTech(Computer Cognition & Technology)
Assistant Professor, Department of Computer Science and Engineering ,
Rural Engineering College, Hulkoti -582205 Dist Gadag State:Karnataka
email: shashi.gadag@gmail.com
Introduction
• Python is named after “Monty Python” and its famous
flying circus, not the snake.
• It is the trade mark of Python Software Foundation.
• It was developed by “Guido Van Rossum”, first released
over a decade in 1991.
Who Uses Python?
• Applications(online/offline)
• Image Processing
• Database Programming
• Embedded Systems
• Web Services
• Online Games
• You Name it, we can do it in Python
What sort of language is Python?
* C,C++ and Fortran
Explicitly Compiled To Machine Code
* Java and C#
Explicitly Compiled To Byte Code
* Perl and Shell
Purely Interpreted
*Python
Implicitly Compiled To Byte Code
Characteristic’s
* Contains good features from other languages.
* Scripting Language
* Easy To Learn
* Interactive
* Object Oriented
Example’s
* Bit Torrent
* Goggle
* Spotify
* Instagram
* Reddit
* Yahoo Maps
* Quora
* You Tube
Content’s I will be covering in this
session
* Basic Syntax * Variables Types * Basic Operations
*Decision Making * Loops * Lists
* Tuples * Dictionary * Functions
*Modules * Files I/O * Exceptions
* Class & Objects * Inheritance * GUI Objects
Where We Can Write The Program’s
* Online
https://www.codecademy.com
* Offline
1) Command Line – Python x.x (command line x-
bit)
2) IDLE (Python x.x GUI x-bit)
Prompt of Offline (CUI)
Prompt of offline (IDLE)
QUITING PYTHON
1) exit()
2) quit()
3) ctrl + D
BASIC PRINT SYNTAX
Note: print() is a case sensitive
BASIC INPUT SYNTAX
Input() is a function that can accept value from the user.
VARIABLE
1) Variable Names should start with character’s.
2) In other programming language we need to
declare and assign the datatype first.
3) In Python there is no need to declare the datatype
for the variabe.
4) Some example you see in the next slide.
VARIABLE..
Note: One more beauty of Python is than we can de-allocate the variable by
using del(). Example del(a)
BASIC OPERATIONS
1) Algebraic Operations
+, _ , * ,/ ,%
2) Power
**
3) Complex Number
a + bj
Note: We can manipulate complex numbers in Python
BASIC OPERATIONS…
COMPARISIONS OPERATIONS
It Gives the Boolean Values.(True or False)
Python Functions
= Assignment
== Equality Comparision
!= Not Equals
< Less than
> Greater than
>= Greater than equals to
<= Less than equals to
Textual Comparsions
value1 == value2
COMPARISIONS OPERATIONS…
CONVERTING BETWEEN TYPES
1) int() : anything into integers
2)float() : anything into float
3) str() : anything into string
CONVERTING BETWEEN TYPES…
CONVERTING BETWEEN TYPES…
CONVERTING BETWEEN TYPES…
DECISION MAKING
1) If .. Else Statement
2) Nested.. If Statement
3) Else..If ladder
Based on the condition or criteria, we have to execute
a group of statements is called Decision Making.
Note: Here after writing the condition we need to write colon(:) for each decision
making statement.
DECISION MAKING…
DECISION MAKING…
DECISION MAKING…
LOOPING STATEMENTS
1) While loop
2) For loop
WHILE STATEMENTS…
FOR STATEMENTS…
NESTED FOR STATEMENTS…
LIST
• By using list we can create a list of values.
• List is also know as superdynamic.
• It can contain all kinds of datatype.
• It is one of the most versatile datatype avaliable in
Python.
• List has these built-in functions. 1) clear 2)copy
3)count 4) extend 5) index 6)pop 7)remove
8)reverse 9) sort.
LIST…
TUPLES
• Tuples are similar to lists.
• It also stores the values, but the values should be
stored in rounded brackets ().
• But only difference between tuples and list is that
tuples data once created cannot be changed.
• We cannot add or delete or change the values of
tuples.
• Tuples have only two built-in functions 1)count
2) index
TUPLES…
DICTIONARY
• Dictionary is also similar to list.
• But the difference is that in dictionary we are
having key and the values of each item.
• Items are stored in flower brackets {}.
• One key can have more than one values.
DICTIONARY…
Key
Values
FUNCTIONS
• A functions is a block of code, which executes when we
call that function.
• A functions are of two types.
1) Built-in functions
dir(__builtins__) (to underscore continuous)
help(max)
Example : pow(2,3), max(10,20,15)
2)User-defined functions.
Here user will create his/her own function according
to his/her need.
BUILT_IN FUNCTIONS…
USER-DEFINED FUNCTIONS…
Body of the function
Calling the function
USER-DEFINED FUNCTIONS WITH
PARAMETERS…
MODULES
 Modules are the bundles of functions related to that
domain.
 For example if we want to work on mathematical
operations, then we need to have math module.
 If we import math module, then we can do any
mathematical operations.
MODULES…
READIND & WRITING A FILE
• File is nothing but storing some content.
• File has two mode reading and writing.
• Syntax : file=open(‘path of the file’,’ ‘r’ or ‘w’)
• File.write(“write the content you want to store in
file”)
• File.close().
• Similarly for reading also.
READIND & WRITING A FILE…
EXCEPTION HANDLING IN PYTHON
EXCEPTION HANDLING IN PYTHON…
CLASS AND OBJECT
• Class is an template.
• Class contains data members and function.
• Object is an instance of an class
• Using object, we can use the data members and
functions
• To access members we need to use dot operators.
CLASS AND OBJECT…
INHERITANCE
* Inheritance is the process of acquiring the data
members and functions of the another class.
INHERITANCE…
GUI PROGRAMMING
• Graphical User Interface.
• To create windows application
• We need to import tkinter module
• Then use the method which you want to create.
• For example
• First Write the code in script and save the file with
extension “myfirst.py”
• It will take default the extension.
• To Run the script use F5 function key.
GUI PROGRAMMING…
Note: You write this is script file.
GUI PROGRAMMING…
Title of the Form
Text Box
Button
References
1) Learning To Program Using Python: Cody Jackson
2) Python Programming for the Absolute Beginner
by Michael Dawson
3) Learning To Program With Python By Richard L
Halterman
Thank You For Your Valuable Time
Sparing with this presentation.

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to python programming
Introduction to python programmingIntroduction to python programming
Introduction to python programmingSrinivas Narasegouda
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To PythonVanessa Rene
 
Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Jaganadh Gopinadhan
 
1.python interpreter and interactive mode
1.python interpreter and interactive mode1.python interpreter and interactive mode
1.python interpreter and interactive modeManjuA8
 
Benefits & features of python |Advantages & disadvantages of python
Benefits & features of python |Advantages & disadvantages of pythonBenefits & features of python |Advantages & disadvantages of python
Benefits & features of python |Advantages & disadvantages of pythonparadisetechsoftsolutions
 
Zero to Hero - Introduction to Python3
Zero to Hero - Introduction to Python3Zero to Hero - Introduction to Python3
Zero to Hero - Introduction to Python3Chariza Pladin
 
Python-03| Data types
Python-03| Data typesPython-03| Data types
Python-03| Data typesMohd Sajjad
 
Introduction to Python
Introduction to Python Introduction to Python
Introduction to Python amiable_indian
 
Python Programming Language | Python Classes | Python Tutorial | Python Train...
Python Programming Language | Python Classes | Python Tutorial | Python Train...Python Programming Language | Python Classes | Python Tutorial | Python Train...
Python Programming Language | Python Classes | Python Tutorial | Python Train...Edureka!
 
Variables & Data Types In Python | Edureka
Variables & Data Types In Python | EdurekaVariables & Data Types In Python | Edureka
Variables & Data Types In Python | EdurekaEdureka!
 
Basic Concepts in Python
Basic Concepts in PythonBasic Concepts in Python
Basic Concepts in PythonSumit Satam
 
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 | EdurekaEdureka!
 
Overview of python 2019
Overview of python 2019Overview of python 2019
Overview of python 2019Samir Mohanty
 

Was ist angesagt? (20)

Python introduction
Python introductionPython introduction
Python introduction
 
Introduction to python programming
Introduction to python programmingIntroduction to python programming
Introduction to python programming
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To Python
 
Beginning Python Programming
Beginning Python ProgrammingBeginning Python Programming
Beginning Python Programming
 
Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python
 
1.python interpreter and interactive mode
1.python interpreter and interactive mode1.python interpreter and interactive mode
1.python interpreter and interactive mode
 
Python by Rj
Python by RjPython by Rj
Python by Rj
 
Benefits & features of python |Advantages & disadvantages of python
Benefits & features of python |Advantages & disadvantages of pythonBenefits & features of python |Advantages & disadvantages of python
Benefits & features of python |Advantages & disadvantages of python
 
Zero to Hero - Introduction to Python3
Zero to Hero - Introduction to Python3Zero to Hero - Introduction to Python3
Zero to Hero - Introduction to Python3
 
Python-03| Data types
Python-03| Data typesPython-03| Data types
Python-03| Data types
 
Python basics
Python basicsPython basics
Python basics
 
Introduction to Python
Introduction to Python Introduction to Python
Introduction to Python
 
Python
PythonPython
Python
 
Python Basics
Python BasicsPython Basics
Python Basics
 
Python Programming Language | Python Classes | Python Tutorial | Python Train...
Python Programming Language | Python Classes | Python Tutorial | Python Train...Python Programming Language | Python Classes | Python Tutorial | Python Train...
Python Programming Language | Python Classes | Python Tutorial | Python Train...
 
Variables & Data Types In Python | Edureka
Variables & Data Types In Python | EdurekaVariables & Data Types In Python | Edureka
Variables & Data Types In Python | Edureka
 
Basic Concepts in Python
Basic Concepts in PythonBasic Concepts in Python
Basic Concepts in Python
 
Python Basics
Python BasicsPython Basics
Python Basics
 
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
 
Overview of python 2019
Overview of python 2019Overview of python 2019
Overview of python 2019
 

Ähnlich wie Python

Python for katana
Python for katanaPython for katana
Python for katanakedar nath
 
prakash ppt (2).pdf
prakash ppt (2).pdfprakash ppt (2).pdf
prakash ppt (2).pdfShivamKS4
 
Summer Training Project On Python Programming
Summer Training Project On Python ProgrammingSummer Training Project On Python Programming
Summer Training Project On Python ProgrammingKAUSHAL KUMAR JHA
 
The Ring programming language version 1.10 book - Part 7 of 212
The Ring programming language version 1.10 book - Part 7 of 212The Ring programming language version 1.10 book - Part 7 of 212
The Ring programming language version 1.10 book - Part 7 of 212Mahmoud Samir Fayed
 
Python_Unit_1.pdf
Python_Unit_1.pdfPython_Unit_1.pdf
Python_Unit_1.pdfalaparthi
 
web programming UNIT VIII python by Bhavsingh Maloth
web programming UNIT VIII python by Bhavsingh Malothweb programming UNIT VIII python by Bhavsingh Maloth
web programming UNIT VIII python by Bhavsingh MalothBhavsingh Maloth
 
Programming with Python - Week 3
Programming with Python - Week 3Programming with Python - Week 3
Programming with Python - Week 3Ahmet Bulut
 
Programming with Python: Week 1
Programming with Python: Week 1Programming with Python: Week 1
Programming with Python: Week 1Ahmet Bulut
 
Python (3).pdf
Python (3).pdfPython (3).pdf
Python (3).pdfsamiwaris2
 
pythontraining-201jn026043638.pptx
pythontraining-201jn026043638.pptxpythontraining-201jn026043638.pptx
pythontraining-201jn026043638.pptxRohitKumar639388
 
11 Unit 1 Chapter 03 Data Handling
11   Unit 1 Chapter 03 Data Handling11   Unit 1 Chapter 03 Data Handling
11 Unit 1 Chapter 03 Data HandlingPraveen M Jigajinni
 
Python Interview Questions For Experienced
Python Interview Questions For ExperiencedPython Interview Questions For Experienced
Python Interview Questions For Experiencedzynofustechnology
 
Interview-level-QA-on-Python-Programming.pdf
Interview-level-QA-on-Python-Programming.pdfInterview-level-QA-on-Python-Programming.pdf
Interview-level-QA-on-Python-Programming.pdfExaminationSectionMR
 
First Steps in Python Programming
First Steps in Python ProgrammingFirst Steps in Python Programming
First Steps in Python ProgrammingDozie Agbo
 
James Jesus Bermas on Crash Course on Python
James Jesus Bermas on Crash Course on PythonJames Jesus Bermas on Crash Course on Python
James Jesus Bermas on Crash Course on PythonCP-Union
 

Ähnlich wie Python (20)

Python for katana
Python for katanaPython for katana
Python for katana
 
prakash ppt (2).pdf
prakash ppt (2).pdfprakash ppt (2).pdf
prakash ppt (2).pdf
 
intro to python.pptx
intro to python.pptxintro to python.pptx
intro to python.pptx
 
Summer Training Project On Python Programming
Summer Training Project On Python ProgrammingSummer Training Project On Python Programming
Summer Training Project On Python Programming
 
Python-Basics.pptx
Python-Basics.pptxPython-Basics.pptx
Python-Basics.pptx
 
The Ring programming language version 1.10 book - Part 7 of 212
The Ring programming language version 1.10 book - Part 7 of 212The Ring programming language version 1.10 book - Part 7 of 212
The Ring programming language version 1.10 book - Part 7 of 212
 
Python_Unit_1.pdf
Python_Unit_1.pdfPython_Unit_1.pdf
Python_Unit_1.pdf
 
web programming UNIT VIII python by Bhavsingh Maloth
web programming UNIT VIII python by Bhavsingh Malothweb programming UNIT VIII python by Bhavsingh Maloth
web programming UNIT VIII python by Bhavsingh Maloth
 
Python intro
Python introPython intro
Python intro
 
Programming with Python - Week 3
Programming with Python - Week 3Programming with Python - Week 3
Programming with Python - Week 3
 
Python Demo.pptx
Python Demo.pptxPython Demo.pptx
Python Demo.pptx
 
GE3151_PSPP_UNIT_2_Notes
GE3151_PSPP_UNIT_2_NotesGE3151_PSPP_UNIT_2_Notes
GE3151_PSPP_UNIT_2_Notes
 
Programming with Python: Week 1
Programming with Python: Week 1Programming with Python: Week 1
Programming with Python: Week 1
 
Python (3).pdf
Python (3).pdfPython (3).pdf
Python (3).pdf
 
pythontraining-201jn026043638.pptx
pythontraining-201jn026043638.pptxpythontraining-201jn026043638.pptx
pythontraining-201jn026043638.pptx
 
11 Unit 1 Chapter 03 Data Handling
11   Unit 1 Chapter 03 Data Handling11   Unit 1 Chapter 03 Data Handling
11 Unit 1 Chapter 03 Data Handling
 
Python Interview Questions For Experienced
Python Interview Questions For ExperiencedPython Interview Questions For Experienced
Python Interview Questions For Experienced
 
Interview-level-QA-on-Python-Programming.pdf
Interview-level-QA-on-Python-Programming.pdfInterview-level-QA-on-Python-Programming.pdf
Interview-level-QA-on-Python-Programming.pdf
 
First Steps in Python Programming
First Steps in Python ProgrammingFirst Steps in Python Programming
First Steps in Python Programming
 
James Jesus Bermas on Crash Course on Python
James Jesus Bermas on Crash Course on PythonJames Jesus Bermas on Crash Course on Python
James Jesus Bermas on Crash Course on Python
 

Mehr von Rural Engineering College Hulkoti (7)

The inspiring thoughts_that_can_change_your_life(part_3)
The inspiring thoughts_that_can_change_your_life(part_3)The inspiring thoughts_that_can_change_your_life(part_3)
The inspiring thoughts_that_can_change_your_life(part_3)
 
The inspiring thoughts_that_can_change_your_life(part_2)
The inspiring thoughts_that_can_change_your_life(part_2)The inspiring thoughts_that_can_change_your_life(part_2)
The inspiring thoughts_that_can_change_your_life(part_2)
 
The Inspiring Thoughts That Can Change Your Life.
The Inspiring Thoughts That Can Change Your Life.The Inspiring Thoughts That Can Change Your Life.
The Inspiring Thoughts That Can Change Your Life.
 
What Should Be The Attribute’s of Young Generation after completion of Educat...
What Should Be The Attribute’s of Young Generation after completion of Educat...What Should Be The Attribute’s of Young Generation after completion of Educat...
What Should Be The Attribute’s of Young Generation after completion of Educat...
 
G mppt
G mpptG mppt
G mppt
 
Failure vs Success
Failure vs SuccessFailure vs Success
Failure vs Success
 
Innovate thoughts
Innovate thoughtsInnovate thoughts
Innovate thoughts
 

Kürzlich hochgeladen

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 

Kürzlich hochgeladen (20)

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 

Python