Questions tagged [backquote]
33 questions
0
votes
1 answer
pymysql using backquote as implicite string converter fails in Python 3 -
I have the following cell in jupyter (python3):
import pymysql
conn = pymysql.connect(host='localhost', port=3306, user='root',passwd='geheim', db='mysql')
cur = conn.cursor()
cur.execute("DROP DATABASE IF EXISTS foobar")
cur.execute("CREATE…

Krischu
- 1,024
- 2
- 15
- 35
-1
votes
1 answer
Difference between using or not using Back Quote
What is the difference of using or not using the BACK QUOTE `
For example, both the code works regardless.
First example with the BACK QUOTE, second example without BACK QUOTE.
Thank you so much in advance for your help.
if [ "`/usr/bin/whoami`" !=…

Fabio
- 237
- 2
- 13
-1
votes
1 answer
What does a double backtick/grave (``) mean in c++ documentation?
I am learning c++ and am reading this from c-faq.com. Frequently, when referring to an unknown element, the author will preface the name of the element with ``.
What does that mean? I'm vaguely familiar with * or & before a variable or function but…

mc-lunar
- 293
- 2
- 4
- 14