Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The application scheme of Python file and how to write the code

2025-03-09 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Python file related applications and how to write code, I believe that many inexperienced people do not know what to do, so this paper summarizes the causes of the problem and solutions, through this article I hope you can solve this problem.

Python file

Import os import os.path

Os,os.path contains most file access functions, so introduce Python files first. Please modify this path according to your actual situation

Rootdir = "d:/download" for parent, dirnames, filenames in os.walk (rootdir): # case 1: for dirname in dirnames: print ("parent is:" + parent) print ("dirname is:" + dirname) # case 2 for filename in filenames: print ("parent is:" + parent) print ("filename with full path:" + os.path.join (parent, filename))

Knowledge points:

Os.walk returns a triple. Where dirnames is the name of all folders (excluding paths) and filenames is the name of all files (excluding paths). Parent represents the parent directory. Case1 demonstrates how to traverse all directories. Case2 demonstrates how to traverse all Python files.

Os.path.join (dirname,filename):

Change shapes like "/ a/b/c" and "d.java" to / a/b/c/d.java ".

After reading the above, have you mastered the relevant application scheme of Python file and the method of how to write the code? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report