Python Forum
Best Practice For String Quotations ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Best Practice For String Quotations ?
#2
It depends, and is sort of a personal preference.
The actual pep (most recent) can be viewed here: https://www.python.org/dev/peps/pep-0498/
I like to use single quotes, but use double if string contains single quote, or vice-versa,
(single quote if string contains double quote). If the string contains both single or double, the one
that is the same as that selected for the whole string will have to be escaped,example: '' for a single quote,
or "" for double quote
Reply


Messages In This Thread
Best Practice For String Quotations ? - by Zork_3 - Aug-31-2017, 04:12 PM
RE: Best Practice For String Quotations ? - by Larz60+ - Aug-31-2017, 04:22 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Best practice on using virtual environments in Python bytecrunch 6 916 Feb-14-2024, 03:22 PM
Last Post: snippsat
  best practice for import libraries and using pyinstaller aster 3 2,922 Apr-17-2021, 11:12 AM
Last Post: snippsat
  Threading best practice EvanS1 2 1,958 Apr-21-2020, 10:11 PM
Last Post: EvanS1
  How to properly close db connection, best practice t4keheart 6 3,074 Jan-24-2020, 06:58 PM
Last Post: Marbelous
  Help with string practice Hermann_Fegelein 2 2,722 Aug-15-2018, 04:56 PM
Last Post: Hermann_Fegelein

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020