Oct-11-2021, 01:21 AM
i want to print literally the string "\n", not the expression \n
how would i do that?
how would i do that?
printing an string instead of a expression
|
Oct-11-2021, 01:21 AM
i want to print literally the string "\n", not the expression \n
how would i do that?
Oct-11-2021, 03:09 AM
print('\\n')
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Oct-11-2021, 03:10 PM
Or you can use a raw string.
print(r'I want to see a \n and not have it be a line feed')A problem with the raw string is it disables all escape sequences in the string. |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Printing a raw string with a folder separator at the end, duplicates the separator | krulah | 5 | 2,268 |
Nov-28-2022, 12:41 PM Last Post: snippsat |
|
printing a string in reverse | Skaperen | 2 | 2,125 |
Nov-20-2021, 05:08 AM Last Post: ghoul |
|
Regular expression: cannot find 1st number in a string | Pavel_47 | 2 | 3,052 |
Jan-15-2021, 04:39 PM Last Post: bowlofred |
|
Regular expression: return string, not list | Pavel_47 | 3 | 3,315 |
Jan-14-2021, 11:49 AM Last Post: Pavel_47 |
|
Printing string at specific position on terminal - not showing | __Mathieu__ | 1 | 3,346 |
Sep-07-2020, 10:32 AM Last Post: Larz60+ |
|
Pass results of expression to another expression | cmdr_eggplant | 2 | 3,059 |
Mar-26-2020, 06:59 AM Last Post: ndc85430 |
|
printing a bytes string | Skaperen | 2 | 3,255 |
Jul-21-2019, 03:42 AM Last Post: Skaperen |