diff --git a/README.md b/README.md index 5f03d15..44cf05b 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ List ---- ```python [from_inclusive : to_exclusive : step_size] -.append() # Same as += [] -.extend() # Same as += +.append() # Or: += [] +.extend() # Or: += ``` ```python @@ -90,10 +90,10 @@ Set ``` ```python - = .union() # Or | - = .intersection() # Or & - = .difference() # Or - - = .symmetric_difference() # Or ^ + = .union() # Or: | + = .intersection() # Or: & + = .difference() # Or: - + = .symmetric_difference() # Or: ^ = .issubset() = .issuperset() ``` @@ -304,7 +304,7 @@ Numbers ```python round( [, ndigits]) abs() -math.pow(x, y) # Or x ** y +math.pow(x, y) # Or: x ** y ``` ### Constants