metacharacters

Omitting metacharacters in python

Omitting metacharacters in python Question: I want to assing a path to a variable a: a = "D:misctestsetsReal" How can i omit the t metacharacter without changing the folder name? Asked By: maksim travnik || Source Answers: Use raw strings: a = r"D:misctestsetsReal" Answered By: ruohola Try this: r denotes raw string. a = r"D:misctestsetsReal" …

Total answers: 2