diff --git a/README.md b/README.md index 98851a2..249debc 100644 --- a/README.md +++ b/README.md @@ -261,13 +261,10 @@ import re ### Format ```python = '{}, {}'.format(, ) -``` -#### Or: -```python - = f'{} { = f'{}, {:<10} # ' ' {:>10} # ' ' @@ -276,13 +273,13 @@ import re {:^0} # '' ``` -#### Specific for strings: +#### Options specific to strings: ```python {'abcde':.3} # 'abc' {'abcde':>10.3}' # ' abc' ``` -#### Specific for numbers: +#### Options specific to numbers: ```python {1.23456:.3f} # '1.235' {1.23456:>10.3f} # ' 1.235'