# week Two

This week moves from simple statements to logic and collections. You will learn how to control program flow, compare values, and store multiple items in data structures.

## Learning Goals

* Use `if`, `for`, and `while` to control program flow.
* Understand common operators and how they affect expressions.
* Work with lists, tuples, strings, sets, and dictionaries.

## File Map

* `week2/control_flow/README.md`
* `week2/control_flow/if_statements/README.md`
* `week2/control_flow/for_loop/README.md`
* `week2/control_flow/while_loops/README.md`
* `week2/control_flow/break_and_continue/README.md`
* `week2/operators/README.md`
* `week2/operators/arithmetic/README.md`
* `week2/operators/comparison/README.md`
* `week2/operators/logical/README.md`
* `week2/operators/assignment/README.md`
* `week2/operators/identity/README.md`
* `week2/operators/membership/README.md`
* `week2/operators/bitwise/README.md`
* `week2/data_types/python_lists/README.md`
* `week2/data_types/python_tuples/README.md`
* `week2/data_types/strings/README.md`
* `week2/data_types/sets/README.md`
* `week2/data_types/dictionaries/README.md`

[Next](https://kallyasmedia.gitbook.io/cit-python-cohort-three/week2/control_flow)
