Python while (bool):
logic, python
Solution
`while swag:` will run while `swag` is "truthy", which it will be while `swag` is `True`, and will not be when you set `swag` to `False`.
Problem
In this case: ``` swag = True i = 0 while swag: i=i+1 print(swag) if i == 3: swag = False ``` Will the while loop exit after 3 turns? Does while swag - check if swag exists or if swag is True