SlideShare a Scribd company logo
1 of 13
Python basics:
• Syntax – introduce you to the basic Python programming
syntax.
• Variables – explain to you what variables are and how to
create concise and meaningful variables.
• Strings – learn about the string data and some basic string
operations.
• Numbers – introduce to you the commonly-used number
types including integers and floating-point numbers.
• Booleans – explain the Boolean data type, false and truth
values in Python.
• Constants – show you how to define constants in Python.
• Comments – learn how to make notes in your code.
• Type conversion – learn how to convert a value of one type to
another e.g., converting a string to a number.
Python Operators
• Comparison operators – introduce you
to the comparison operators and how to
use them to compare two values.
• Logical operators – show you how to
use logical operators to combine
multiple conditions.
Python Control Flows
• if…else statement – learn how to execute a code block
based on a condition.
• Ternary operator – introduce you to the Python ternary
operator that makes your code more concise.
• for loop with range() – show you how to execute a code
block for a fixed number of times by using the for loop with
range() function.
• while– show you how to execute a code block as long as a
condition is True.
• break – learn how to exit a loop prematurely.
• continue – show you how to skip the current loop iteration
and start the next one.
• pass – show you how to use the pass statement as a
placeholder
Python Functions
• Python functions – introduce you to functions in Python,
how to define functions, and reuse them in the program.
• Default parameters – show you how to specify the default
values for function parameters.
• Keyword arguments – learn how to use the keyword
arguments to make the function call more obvious.
• Recursive functions – learn how to define recursive
functions in Python.
• Lambda Expressions – show you how to define anonymous
functions in Python using lambda expressions.
• Docstrings – show you how to use docstrings to document a
function.
Python List part 1
• List – introduce you to the list type and how to manipulate
list elements effectively.
• Tuple – introduce you to the tuple which is a list that doesn’t
change throughout the program.
• Sort a list in place – show you how to use the sort() method
to sort a list in place.
• Sort a List – learn how to use the sorted() function to return
a new sorted list from the original list.
• Slice a List – show you how to use the list slicing technique
to manipulate lists effectively.
• Unpack a list – show you how to assign list elements to
multiple variables using list unpacking.
• Iterate over a List – learn how to use a for loop to iterate
over a list.
Python List part 2
• Find the index of an element – show you how to find the
index of the first occurrence of an element in a list.
• Iterables – explain to you iterables, and the difference
between an iterable and iterator.
• Transform list elements with map() – show you how to use
the map() function to transform list elements.
• Filter list elements with filter() – use the filter() function to
filter list elements.
• Reduce list elements into a value with reduce() – use the
reduce() function to reduce list elements into a single value.
• List comprehensions – show you how to create a new list
based on an existing list.
Python Dictionaries
• Dictionary – introduce you to the dictionary type.
• Dictionary comprehension – show you how to use dictionary
comprehension to create a new dictionary from an existing
one.
Python Sets part 1
• Set – explain to you the Set type and show you how to
manipulate set elements effectively.
• Set comprehension – explain to you the set comprehension so
that you can create a new set based on an existing set with a
more concise and elegant syntax.
• Union of Sets – show you how to union two or more sets using
the union() method or set union operator (&).
• Intersection of Sets – show you how to intersect two or more
sets using the intersection() method or set intersection
operator (|).
• Difference of sets – learn how to find the difference of sets
using the set difference() method or set difference operator (-
)
Python Sets part 2
• Symmetric Difference of sets – guide you on how to find the
symmetric difference of sets using the
symmetric_difference() method or the symmetric difference
operator (^).
• Subset – check if a set is a subset of another set.
• Superset – check if a set is a superset of another set.
• Disjoint sets – check if two sets are disjoint.
Python Exception Handeling
• try…except – show you how to handle
exception more gracefully using the
try…except statement.
• try…except…finally – learn how to execute a
code block whether an exception occurs or
not.
• try…except…else – explain to you how to use
the try…except…else statement to control the
follow of the program in case of exceptions.
Python loops
• For else - explain to you the for else
statement.
• while…else – discuss the while else
statement.
• do…while loop emulation – show you how to
emulate the do…while loop in Python by using
the while loop statement.
Python more functions
• Unpacking tuples – show you how to unpack a tuple that
assigns individual elements of a tuple to multiple variables.
• *args Parameters – learn how to pass a variable number of
arguments to a function.
• **kwargs Parameters – show you how to pass a variable
number of keyword arguments to a function.
• Partial functions – learn how to define partial functions.
• Type hints – show you how to add type hints to parameters
and return value of a function and how to use the static type
checker (mypy) to check the type statically.
Python Stringd
• F-strings – learn how to use the f-strings to format text
strings in a clear syntax.
• Raw strings – use raw strings to handle strings that contains
the backslashes.
• Backslash – explain how Python uses the backslashes () in
string literals.

More Related Content

What's hot

What's hot (20)

Introduction To Programming with Python-3
Introduction To Programming with Python-3Introduction To Programming with Python-3
Introduction To Programming with Python-3
 
Java 1.5 - whats new and modern patterns (2007)
Java 1.5 - whats new and modern patterns (2007)Java 1.5 - whats new and modern patterns (2007)
Java 1.5 - whats new and modern patterns (2007)
 
11 Unit 1 Chapter 02 Python Fundamentals
11  Unit 1 Chapter 02 Python Fundamentals11  Unit 1 Chapter 02 Python Fundamentals
11 Unit 1 Chapter 02 Python Fundamentals
 
Chapter 7 String
Chapter 7 StringChapter 7 String
Chapter 7 String
 
This presentation is a great introduction to both fundamental programming con...
This presentation is a great introduction to both fundamental programming con...This presentation is a great introduction to both fundamental programming con...
This presentation is a great introduction to both fundamental programming con...
 
Java String
Java String Java String
Java String
 
Python tuple
Python   tuplePython   tuple
Python tuple
 
Wrapper class (130240116056)
Wrapper class (130240116056)Wrapper class (130240116056)
Wrapper class (130240116056)
 
Python cheat-sheet
Python cheat-sheetPython cheat-sheet
Python cheat-sheet
 
Introduction to Python
Introduction to Python Introduction to Python
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
Let’s Learn Python An introduction to Python
 
Chapter 9 python fundamentals
Chapter 9 python fundamentalsChapter 9 python fundamentals
Chapter 9 python fundamentals
 
Python interview questions and answers
Python interview questions and answersPython interview questions and answers
Python interview questions and answers
 
04 variables
04 variables04 variables
04 variables
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Fundamentals of Python Programming
Fundamentals of Python ProgrammingFundamentals of Python Programming
Fundamentals of Python Programming
 
Python interview questions
Python interview questionsPython interview questions
Python interview questions
 
Python basics
Python basicsPython basics
Python basics
 
The Awesome Python Class Part-2
The Awesome Python Class Part-2The Awesome Python Class Part-2
The Awesome Python Class Part-2
 
wrapper classes
wrapper classeswrapper classes
wrapper classes
 

Similar to Python_basics.pptx

Python For Data Science.pptx
Python For Data Science.pptxPython For Data Science.pptx
Python For Data Science.pptx
rohithprabhas1
 
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdfProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
lailoesakhan
 
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdfProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
lailoesakhan
 

Similar to Python_basics.pptx (20)

MODULE-2.pptx
MODULE-2.pptxMODULE-2.pptx
MODULE-2.pptx
 
Pa1 session 2
Pa1 session 2 Pa1 session 2
Pa1 session 2
 
Python Tutorial Part 1
Python Tutorial Part 1Python Tutorial Part 1
Python Tutorial Part 1
 
Python Basics.pptx
Python Basics.pptxPython Basics.pptx
Python Basics.pptx
 
Python For Data Science.pptx
Python For Data Science.pptxPython For Data Science.pptx
Python For Data Science.pptx
 
Python-Basics.pptx
Python-Basics.pptxPython-Basics.pptx
Python-Basics.pptx
 
Pa2 session 1
Pa2 session 1Pa2 session 1
Pa2 session 1
 
Pa1 session 4_slides
Pa1 session 4_slidesPa1 session 4_slides
Pa1 session 4_slides
 
Python programming
Python programmingPython programming
Python programming
 
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdfProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
 
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdfProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
 
Unit-I-PPT-1.ppt
Unit-I-PPT-1.pptUnit-I-PPT-1.ppt
Unit-I-PPT-1.ppt
 
Python first day
Python first dayPython first day
Python first day
 
Python first day
Python first dayPython first day
Python first day
 
Python Demo.pptx
Python Demo.pptxPython Demo.pptx
Python Demo.pptx
 
Functions-.pdf
Functions-.pdfFunctions-.pdf
Functions-.pdf
 
tupple.pptx
tupple.pptxtupple.pptx
tupple.pptx
 
Programming with Python - Week 3
Programming with Python - Week 3Programming with Python - Week 3
Programming with Python - Week 3
 
Python indroduction
Python indroductionPython indroduction
Python indroduction
 
Python Demo.pptx
Python Demo.pptxPython Demo.pptx
Python Demo.pptx
 

Recently uploaded

在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
ydyuyu
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Monica Sydney
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
pxcywzqs
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
ydyuyu
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiAbu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Monica Sydney
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
ayvbos
 
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

💚 Call Girls Bahraich 9332606886 High Profile Call Girls You Can Get The S...
💚 Call Girls Bahraich   9332606886  High Profile Call Girls You Can Get The S...💚 Call Girls Bahraich   9332606886  High Profile Call Girls You Can Get The S...
💚 Call Girls Bahraich 9332606886 High Profile Call Girls You Can Get The S...
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
Call girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girlsCall girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girls
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
 
Research Assignment - NIST SP800 [172 A] - Presentation.pptx
Research Assignment - NIST SP800 [172 A] - Presentation.pptxResearch Assignment - NIST SP800 [172 A] - Presentation.pptx
Research Assignment - NIST SP800 [172 A] - Presentation.pptx
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiAbu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
 
Leading-edge AI Image Generators of 2024
Leading-edge AI Image Generators of 2024Leading-edge AI Image Generators of 2024
Leading-edge AI Image Generators of 2024
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 

Python_basics.pptx

  • 1. Python basics: • Syntax – introduce you to the basic Python programming syntax. • Variables – explain to you what variables are and how to create concise and meaningful variables. • Strings – learn about the string data and some basic string operations. • Numbers – introduce to you the commonly-used number types including integers and floating-point numbers. • Booleans – explain the Boolean data type, false and truth values in Python. • Constants – show you how to define constants in Python. • Comments – learn how to make notes in your code. • Type conversion – learn how to convert a value of one type to another e.g., converting a string to a number.
  • 2. Python Operators • Comparison operators – introduce you to the comparison operators and how to use them to compare two values. • Logical operators – show you how to use logical operators to combine multiple conditions.
  • 3. Python Control Flows • if…else statement – learn how to execute a code block based on a condition. • Ternary operator – introduce you to the Python ternary operator that makes your code more concise. • for loop with range() – show you how to execute a code block for a fixed number of times by using the for loop with range() function. • while– show you how to execute a code block as long as a condition is True. • break – learn how to exit a loop prematurely. • continue – show you how to skip the current loop iteration and start the next one. • pass – show you how to use the pass statement as a placeholder
  • 4. Python Functions • Python functions – introduce you to functions in Python, how to define functions, and reuse them in the program. • Default parameters – show you how to specify the default values for function parameters. • Keyword arguments – learn how to use the keyword arguments to make the function call more obvious. • Recursive functions – learn how to define recursive functions in Python. • Lambda Expressions – show you how to define anonymous functions in Python using lambda expressions. • Docstrings – show you how to use docstrings to document a function.
  • 5. Python List part 1 • List – introduce you to the list type and how to manipulate list elements effectively. • Tuple – introduce you to the tuple which is a list that doesn’t change throughout the program. • Sort a list in place – show you how to use the sort() method to sort a list in place. • Sort a List – learn how to use the sorted() function to return a new sorted list from the original list. • Slice a List – show you how to use the list slicing technique to manipulate lists effectively. • Unpack a list – show you how to assign list elements to multiple variables using list unpacking. • Iterate over a List – learn how to use a for loop to iterate over a list.
  • 6. Python List part 2 • Find the index of an element – show you how to find the index of the first occurrence of an element in a list. • Iterables – explain to you iterables, and the difference between an iterable and iterator. • Transform list elements with map() – show you how to use the map() function to transform list elements. • Filter list elements with filter() – use the filter() function to filter list elements. • Reduce list elements into a value with reduce() – use the reduce() function to reduce list elements into a single value. • List comprehensions – show you how to create a new list based on an existing list.
  • 7. Python Dictionaries • Dictionary – introduce you to the dictionary type. • Dictionary comprehension – show you how to use dictionary comprehension to create a new dictionary from an existing one.
  • 8. Python Sets part 1 • Set – explain to you the Set type and show you how to manipulate set elements effectively. • Set comprehension – explain to you the set comprehension so that you can create a new set based on an existing set with a more concise and elegant syntax. • Union of Sets – show you how to union two or more sets using the union() method or set union operator (&). • Intersection of Sets – show you how to intersect two or more sets using the intersection() method or set intersection operator (|). • Difference of sets – learn how to find the difference of sets using the set difference() method or set difference operator (- )
  • 9. Python Sets part 2 • Symmetric Difference of sets – guide you on how to find the symmetric difference of sets using the symmetric_difference() method or the symmetric difference operator (^). • Subset – check if a set is a subset of another set. • Superset – check if a set is a superset of another set. • Disjoint sets – check if two sets are disjoint.
  • 10. Python Exception Handeling • try…except – show you how to handle exception more gracefully using the try…except statement. • try…except…finally – learn how to execute a code block whether an exception occurs or not. • try…except…else – explain to you how to use the try…except…else statement to control the follow of the program in case of exceptions.
  • 11. Python loops • For else - explain to you the for else statement. • while…else – discuss the while else statement. • do…while loop emulation – show you how to emulate the do…while loop in Python by using the while loop statement.
  • 12. Python more functions • Unpacking tuples – show you how to unpack a tuple that assigns individual elements of a tuple to multiple variables. • *args Parameters – learn how to pass a variable number of arguments to a function. • **kwargs Parameters – show you how to pass a variable number of keyword arguments to a function. • Partial functions – learn how to define partial functions. • Type hints – show you how to add type hints to parameters and return value of a function and how to use the static type checker (mypy) to check the type statically.
  • 13. Python Stringd • F-strings – learn how to use the f-strings to format text strings in a clear syntax. • Raw strings – use raw strings to handle strings that contains the backslashes. • Backslash – explain how Python uses the backslashes () in string literals.