715
edits
Changes
→Quotes
Note: The space in both examples after the : is not required. It does however, make your prompt easier to read.
In Bash, single quotes suppress shell expansion; meaning variables and commands do not get expanded to their contents. Double quotes allow shell expansion.
In Python, there is no difference between single quotes. Both allow variable expansion. You can use whichever you prefer.