Python Forum
can not change double to single dash
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
can not change double to single dash
#4
In Python '\\' is a way to represent a single '\'. Since the backslash is an escape character to get a single '\' you have to escape it.
>>> print('\\')
\
>>> s = '\nGSG'
>>> print(s)

GSG
>>> s = '\\nGSG'
>>> print(s)
\nGSG
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Messages In This Thread
can not change double to single dash - by oco - May-27-2018, 08:40 AM
RE: can not change double to single dash - by oco - May-29-2018, 06:38 AM
RE: can not change double to single dash - by wavic - May-29-2018, 06:51 AM
RE: can not change double to single dash - by oco - May-30-2018, 07:09 AM
RE: can not change double to single dash - by wavic - May-30-2018, 07:26 AM
RE: can not change double to single dash - by oco - Jun-03-2018, 08:08 AM
RE: can not change double to single dash - by wavic - Jun-03-2018, 09:51 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [SOLVED] Reportlab - change a single page orientation beetlecad 1 1,896 Aug-16-2024, 05:43 PM
Last Post: beetlecad
  Remove single and double quotes from a csv file in 3 to 4 column shantanu97 0 8,834 Mar-31-2021, 10:52 AM
Last Post: shantanu97
  Single digits seem to be greater than double digits Frosty_GM 4 5,516 Nov-20-2020, 10:13 AM
Last Post: DeaD_EyE
  create loop of subplot plotly dash without hardcode tonycat 0 4,701 Sep-23-2020, 08:40 AM
Last Post: tonycat
  How to update component props every time when a Dash callback returns? sguzunov 0 4,071 Jul-27-2020, 07:11 AM
Last Post: sguzunov
  Invalid archive error when attempting to install dash bootstrap components meaydemi 0 5,666 Jul-11-2019, 05:49 PM
Last Post: meaydemi
  how to use dataframe in dash? zhujp98 1 3,461 Jun-20-2018, 12:19 AM
Last Post: scidam
  dash problems zhujp98 0 2,726 Jun-14-2018, 03:30 PM
Last Post: zhujp98
  Change single element in 2D list changes every 1D element AceScottie 9 14,643 Nov-13-2017, 07:05 PM
Last Post: Larz60+
  Replace Single Backslash with Double Backslash in python saswatidas437 2 41,110 Mar-19-2017, 10:48 AM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

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