Python mengganti nama direktori atau file

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

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

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