We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80387ae commit f9b49c8Copy full SHA for f9b49c8
doc/source/user_guide/io.rst
@@ -3815,7 +3815,7 @@ The right-hand side of the sub-expression (after a comparison operator) can be:
3815
.. code-block:: ipython
3816
3817
string = "HolyMoly'"
3818
- store.select('df', 'index == %s' % string)
+ store.select('df', f'index == {string}')
3819
3820
The latter will **not** work and will raise a ``SyntaxError``.Note that
3821
there's a single quote followed by a double quote in the ``string``
0 commit comments