Series - More-Python-for-Beginners


Closing | More Python for Beginners [20 of 20}[MP4] [0:01:14] [2020/04/29]
We close by talking about some next steps, and how you can continue to grow your Python skills. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to…


Demo: Asynchronous operations | More Python for Beginners [19 of 20][MP4] [0:13:41] [2020/04/29]
Implementing asyncio for async/await calls. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft Learn:…


Asynchronous operations | More Python for Beginners [18 of 20][MP4] [0:12:30] [2020/04/29]
Long running operations, such as making REST calls, impact an application's performance. There are many strategies for allowing execution to continue while waiting for an operation to complete in the…


Demo: Using with | More Python for Beginners [17 of 20][MP4] [0:02:03] [2020/04/29]
Closing resources with with. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft Learn: https://aka.ms/MSLearnPythonAll…


Using with to automatically close resources | More Python for Beginners [16 of 20][MP4] [0:02:18] [2020/04/29]
When working with external resources, such as files, it's important to close the handle as soon as you're done using the resource. Unfortunately, it can be pretty easy to forget to properly close off…


Demo: Working with files | More Python for Beginners [15 of 20][MP4] [0:06:58] [2020/04/29]
Read and write information from files. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft Learn:…


Working with files | More Python for Beginners [14 of 20][MP4] [0:07:54] [2020/04/29]
File I/O is one of the oldest ways of managing data, and still useful in today's world. Let's see how to read and write information into files. Watch the Python for Beginner series here:…


Demo: Managing the file system | More Python for Beginners [13 of 20][MP4] [0:07:14] [2020/04/29]
List files and folders in the local file system. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft Learn:…


Managing the file system | More Python for Beginners [12 of 20][MP4] [0:04:32] [2020/04/29]
You will frequently find yourself needing to work with local storage to locate files and navigate the folder hierarchy. We're going to explore how to work with files and folders. Watch the Python for…


Demo: Mixins | More Python for Beginners [11 of 20][MP4] [0:04:40] [2020/04/29]
See a streamlined version of how a framework might use mixins to enable functionality. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python'…


Mixins (Multiple inheritance) | More Python for Beginners [10 of 20][MP4] [0:10:52] [2020/04/29]
Multiple inheritance is a bit of a controversial topic. While we won't take sides on this debate, we will explore how Python supports multiple inheritance. We'll discuss a common scenario you'll come…


Demo: Inheritance | More Python for Beginners [9 of 20][MP4] [0:11:03] [2020/04/29]
Create a specialized class in Python and override common functionality. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft…


Inheritance | More Python for Beginners [8 of 20][MP4] [0:09:56] [2020/04/29]
Inheritance allows you to create specialized types of classes and objects, and share behavior across instances. We'll explore how Python supports inheritance, and how you can override functionality,…


Demo: Classes | More Python for Beginners [7 of 20][MP4] [0:07:16] [2020/04/29]
Create a class in Python and add functions and properties. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft Learn:…


Classes | More Python for Beginners [6 of 20][MP4] [0:11:55] [2020/04/29]
Python allows you great flexibility when choosing your programming paradigm - procedural, functional and object oriented are all supported. The core of object-oriented programming is classes. We'll…


Demo: Lambdas | More Python for Beginners [5 of 20][MP4] [0:04:02] [2020/04/29]
Create a lambda for use in a common Python utility. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft Learn:…


Lambdas | More Python for Beginners [4 of 20][MP4] [0:04:29] [2020/04/29]
Methods like filter on a Python list allow you to find items based on criteria you specify through the use of a function. However, for simple comparisons (like equality or comparison to a number), it…


Demo: Formatting and Linting | More Python for Beginners [3 of 20][MP4] [0:07:04] [2020/04/29]
We explore how to work with PyLint in Visual Studio Code. Watch the Python for Beginner series here: https://aka.ms/PythonBeginnerSeriesFor the Full 'Intro to Python' course on Microsoft Learn:…


Formatting and Linting | More Python for Beginners [2 of 20][MP4] [0:10:30] [2020/04/29]
When working in any new language, especially one with as vibrant a community as Python, it's important to follow the general practices most developers follow. We're going to chat a little bit about…


Introducing More Python for Beginners | More Python for Beginners [1 of 20][MP4] [0:03:24] [2020/04/29]
When creating Python for Beginners we knew we wouldn't be able to cover everything about Python. We focused on the core concepts most Python developers need to know when getting started. However,…