View Single Post
  #2  
Old 01-18-2007, 01:05 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
You can also use the following to allow backslashes in strings:
Code:
path = r'C:\Tester\retest'
Placing an r before the string tells python not to translate backslash expressions.
Reply With Quote