Thursday

python help function/command


to get list of all methods/properties use :
>>dir ('mystring')

to get help for 'center' method of string we use :
>>help(''.center)

more...

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...