On Fri, Dec 15, 2017, 09:58 wrote:
> Hi,
>
> I have created one library file
> "modified_python_automation_tcl.py"..Inside my library file I have set of
> codes as follows.
>
> import sys
> import time
> from datetime import datetime
> import re,sys,os,itertools,datetime,commands,logging,math,tim
On Fri, 15 Dec 2017 09:09 pm, Tim Golden wrote:
> Apart from anything else these need to be raw strings:
>
> sys.path.append(r'C:\Python27\Lib\lib-tk')
Don't use raw strings for paths. It's a trap:
r'C:\Python27' # okay
r'C:\Python27\' # fails
Windows supports / as directory separator. Yo
On 15/12/2017 09:58, supsw...@gmail.com wrote:
Hi,
I have created one library file
"modified_python_automation_tcl.py"..Inside my library file I have
set of codes as follows.
import sys import time from datetime import datetime import
re,sys,os,itertools,datetime,commands,logging,math,time,copy