We appreciate your visit to Write an if statement that assigns 0 2 to the variable commission if sales is greater than or equal to 10000 python if sales 10000. This page offers clear insights and highlights the essential aspects of the topic. Our goal is to provide a helpful and engaging learning experience. Explore the content and find the answers you need!

Write an if statement that assigns 0.2 to the variable `commission` if `sales` is greater than or equal to 10000.

```python
if sales >= 10000:
commission = 0.2
```