>>> import os
>>> os.getcwd() #현재의 디렉토리를 보여줌
'C:\\Python27'
>>> os.listdir('C:\Python27')
['DLLs', 'Doc', 'include', 'Lib', 'libs', 'LICENSE.txt', 'NEWS.txt',
'python.exe', 'pythonw.exe', 'README.txt', 'tcl', 'Tools',
'w9xpopen.exe']
>>> os.rename('README.txt', 'readme.txt')
>>> os.listdir('C:\Python27')
['DLLs', 'Doc', 'include', 'Lib', 'libs', 'LICENSE.txt', 'NEWS.txt',
'python.exe', 'pythonw.exe', 'readme.txt', 'tcl', 'Tools',
'w9xpopen.exe']
>>> import string
>>> string.capitalize('python') # 첫 글자를 대문자로
'Python'
>>> string.replace('simple', 'i', 'a') #'simple'의 'i'를 'a'로 바꿈
'sample'
>>> string.split('break into words') # 문자열을 분리한 리스트 구함
['break', 'into', 'words']