import os
print os.getcwd()
os.chdir('/somewhere')
os.system('ping -c 4 127.0.0.1')
import shutil
shutil.copyfile('/somewhere/filename', '/anotherwhere/filename')
import glob
print glob.glob('*.py')
import sys
sys.exit(0)
sys.stderr.write('err msg')
sys.stdout.write('output msg')
import re
print re.findall(r'([a-z]+)', 'which foot or hand fell fastest')
import math
math.cos(math.pi / 4.0)
math.log(1024, 2)
import random
random.choise(['apple', 'pear', 'banana'])
random.sample(xrange(100), 10)
random.random()
random.randrange(6)
import urllib2
f=urllib2.urlopen('http://www.baidu.com')
for line in f:
print line,
f.close()
import smtplib
smtpConn = smtplib.SMTP('stmp.qq.com')
smtpConn.login('username', 'password')
smtpConn.sendmail('fromuser@qq.com', 'touser@qq.com',\
'''
some long text
''')
smtpConn.quit()
from datetime import date
now = date.today()
time1 = date(2016, 8, 15)
print now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.")
range1 = now - time1
print range1.days
import zlib
s = b'witch which has which witches wrist watch'
t = zlib.compress(s)
zlib.decompress(t)
import locale
locale.setlocale(locale.LC_ALL, locale='zh_CN.UTF-8')
locale.getlocale()
locale.getdefaultlocale()
import logging
logging.debug('Debugging information')
logging.info('Informational message')
logging.warning('Warning:config file %s not found', 'server.conf')
logging.error('Error occurred')
logging.critical('Critical error -- shutting down')