Third part of articles about the Microsoft's Python for Beginners series.
All the examples from the playlist are available in this GitHub repository: Python Examples.
Objective
You will learn about the operations with numbers, dates and how to handle errors.
A Python file was created to demonstrate each example.
Topics
number.py
Ex: Testing math operations with numbers and numeric strings.
Running the example:
python .\examples\numbers.py
The result:
date.py
Ex: Testing datetime functions and formats.
Running the example:
python .\examples\date.py
The result:
error_handling.py
Ex: Handling runtime errors.
Running the example:
python .\examples\error_handling.py
The result:
Next
You will learn how to work with conditional logics, collections and loops.
Video References
- Programming with Python | Python for Beginners [13 of 44]
- Programming with Python | Python for Beginners [14 of 44]
- Programming with Python | Python for Beginners [15 of 44]
- Programming with Python | Python for Beginners [16 of 44]
- Programming with Python | Python for Beginners [17 of 44]
- Programming with Python | Python for Beginners [18 of 44]
Top comments (0)