Here's a few places in the documentation I find myself visiting frequently. You might find these useful too! This isn't a complete list, so if you can't find what you need, check the table of contents.
- Built-in Types -- All of Python's built-in types (like int and str), operators, and lots of other useful info.
- Control Flow Tools --
if
/elif
/else
,for
loops,range()
, and more. - Data Structures -- Want to know about lists, dictionaries, or sets? This page is a great reference.
- String Formatting --
The nitty-gritty details of using
.format()
on a string. - Reading and Writing Files -- Want to work with files? Here's how.