You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -3387,7 +3387,7 @@ Let's increase the number of iterations by a factor of 10.
3387
3387
46
3388
3388
```
3389
3389
3390
-
**💡 Explanation:** The `@` operator was added in Python 3.5 keeping sthe cientific community in mind. Any object can overload `__matmul__` magic method to define behavior for this operator.
3390
+
**💡 Explanation:** The `@` operator was added in Python 3.5 keeping the scientific community in mind. Any object can overload `__matmul__` magic method to define behavior for this operator.
3391
3391
3392
3392
* From Python 3.8 onwards you can use a typical f-string syntax like `f'{some_var=}` for quick debugging. Example,
3393
3393
```py
@@ -3443,7 +3443,7 @@ Let's increase the number of iterations by a factor of 10.
3443
3443
3444
3444
* `int('١٢٣٤٥٦٧٨٩')` returns `123456789` in Python 3. In Python, Decimal characters include digit characters, and all characters that can be used to form decimal-radix numbers, e.g. U+0660, ARABIC-INDIC DIGIT ZERO. Here's an [interesting story](http://chris.improbable.org/2014/8/25/adventures-in-unicode-digits/) related to this behavior of Python.
3445
3445
3446
-
* You can seperate numeric literals with underscores (for better readablity) from Python 3 onwards.
3446
+
* You can separate numeric literals with underscores (for better readability) from Python 3 onwards.
0 commit comments