Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.34 KB

what-next.md

File metadata and controls

34 lines (23 loc) · 1.34 KB

What should I do now?

You are now at the end of this tutorial. This means that you're almost ready to do something fun with Python. This page contains a bunch of links to other useful and fun Python resources.

What the heck is this?

Sometimes you'll come across things that I haven't shown in this tutorial. Here's a table of things you'll probably come across:

A dictionary without a :

These are actually sets, not dictionaries. However, {} is a dictionary.

yield stuff

The yield keyword is a way to create generators

What you see What it is
a dictionary without : [a set]
yield stuff
import stuff as thing imports stuff and sets the module to a thing variable
from stuff import thing about the same as import stuff and after that
from stuff import * imports everything

Fun modules


List of contents