fix(curriculum): remove paragraph on bitwise operators in Augmented Assignments lesson (#64566)

This commit is contained in:
Diem-Trang Pham
2025-12-18 14:07:27 -06:00
committed by GitHub
parent 8defca5b97
commit b404883428

View File

@@ -104,8 +104,6 @@ power **= 3
print(power) # 8
```
There are other augmented assignment operators too, like those for bitwise operators. They include `&=`, `^=`, `>>=`, and `<<=`.
You can use some augmented assignment operators with strings, too. For example, the addition assignment operator makes it easy to concatenate strings:
```python