Python переименование каталога или файла

>>> os.listdir()
['test']

>>> os.rename('test','new_one')

>>> os.listdir()
['new_one']
SAMER SAEID