Operators allow you to perform basic math operations and assign values to variables in Swift. The main arithmetic operators are +, -, *, and /. You can perform calculations with integers and doubles, taking order of operations into account. Variables can be reassigned and updated using compound assignment operators like += and -=. When combining different numeric types in an expression, you may need to explicitly convert one of the values to match the other.