Source Code:
(back to article)
normaler_string = "C:\Windows" print(normaler_string) # Ausgabe: C:Windows roher_string = r"C:\Windows" print(roher_string) # Ausgabe: C:\Windows
Result:
Report an issue