Skip to content

Files

Latest commit

author
Christopher Harrison
Apr 27, 2020
311866d · Apr 27, 2020

History

History
This branch is 12 commits ahead of, 6 commits behind microsoft/c9-python-getting-started:master.

more-python-for-beginners

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020
Apr 27, 2020

More Python for beginners

Overview

When we created Python for beginners we knew we wouldn't be able to cover everything in Python. We focused on the features which are core to getting started with the language. But, of course, we left some items off the list. Well, we're back for more! We created another set of videos to highlight more features, including a couple of "cutting edge" items like async/await. These skills will allow you to continue to grow as a Python developer.

What you'll learn

  • Creating classes and objects
  • Asynchronous development
  • Working with the filesystem

What we don't cover

Prerequisites

Setup steps

# Windows
python -m venv venv
.\venv\Scripts\activate

# Linux or macOS
python3 -m venv venv
. ./venv/bin/activate
  • Install the packages for Async/Await
# Windows
pip install -r requirements.txt

# Linux or macOS
pip3 install -r requirements.txt

Next steps

If you're looking to continue building, here's a couple of courses and quickstarts you might find of interest: