|
@ -269,6 +269,7 @@ import re |
|
|
|
|
|
|
|
|
### Format |
|
|
### Format |
|
|
```python |
|
|
```python |
|
|
|
|
|
# Both return '<el_1>, <el_2>': |
|
|
<str> = '{}, {}'.format(<el_1>, <el_2>) |
|
|
<str> = '{}, {}'.format(<el_1>, <el_2>) |
|
|
<str> = f'{<el_1>}, {<el_2>}' |
|
|
<str> = f'{<el_1>}, {<el_2>}' |
|
|
``` |
|
|
``` |
|
|