Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.66 KB

what-next.md

File metadata and controls

42 lines (29 loc) · 1.66 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


If you have trouble with this tutorial please tell me about it and I'll make this tutorial better. If you like this tutorial, please give it a star.

You may use this tutorial freely at your own risk. See LICENSE.

List of contents