Pyhton2.7.10:使用os.listdir()在文件夹中打印文件名,但要注意shell

时间:2016-11-22 13:08:36

标签: python macos python-2.7

我想用函数os.listdir()打印文件夹上的所有files'name,但是我运行了几次代码,这些都没有在shell中显示

我正在使用OS X 10.11.6

Screen shot

import os
def rename_files():
    #get file names from a folder
    file_list = os.listdir('/Users/luoluoluo/Desktop/Udacity/Program funfation with python/prank')
    print(file_list)

1 个答案:

答案 0 :(得分:0)

运行脚本时需要调用函数rename_files。在脚本末尾添加:

if __name__ == "__main__":
    rename_files()

The reference