[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[技术讨论] Python脚本获取当前目录下有哪些文件夹

  1. import os
  2. for i in os.listdir('.'):
  3.     if os.path.isdir(i):
  4.         print i
复制代码
  1. import os
  2. cmd = "dir /b /ad"
  3. for i in os.popen(cmd).readlines():
  4.     print i,
复制代码
  1. import os
  2. for root, dirs, files in os.walk('.'):
  3.     for i in dirs:
  4.         print i
  5.     break
复制代码
试着写了几个,总感觉不够优雅,求大湿指点。

print 早就更新了,
print(i)
  1. print(...)
  2.     print(value, ..., sep=' ', end='\n', file=sys.stdout)
  3.    
  4.     Prints the values to a stream, or to sys.stdout by default.
  5.     Optional keyword arguments:
  6.     file: a file-like object (stream); defaults to the current sys.stdout.
  7.     sep:  string inserted between values, default a space.
  8.     end:  string appended after the last value, default a newline.
复制代码

TOP

回复 2# ivor


你用的Python3是吧,其实还是有很大一部分人在用Python2的,包括我。

TOP

学习了,,,我感觉代码已经比较优雅了。。
问题解决后,请在标题前面注明[已解决],并给回答者加分——化繁为简,提高工作效率!

TOP

返回列表