In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-26 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
The addhosts project is nearing completion, and I'd like to know how many lines of code we've written.
I. demand
Count the number of lines of code in the py file under the source directory.
II. Script analysis
Get all the .py files in the specified directory and traverse the files
Read each file, traverse the contents of the file, and filter out blank lines and comments
III. Realization and results
# coding:utf-8import osclass StatLines (object): def _ init__ (self,path): self.path = path def stat_lines (self): file_list = os.listdir (self.path) os.chdir (self.path) total = 0 for file in file_list: if file.endswith ('.py'): lines = open (file Encoding='utf-8') .readlines () count = 0 for line in lines: if line = ='\ n': continue elif line.startswith ('#'): continue else: Count + = 1 total + = count print ('% s has% d lines'% (file) Count) print ('total lines is:% d'% total) if _ _ name__ = =' _ _ main__': sl = StatLines ('E:\\ Python_Project\\ addhost_v2\\ addhosts') sl.stat_lines ()
The running results are as follows:
IV. Summary
Question:
While executing open (file). Readlines (), the following error was encountered
"UnicodeDecodeError: 'gbk' codec can't decode byte 0xaf in position 548: illegal multibyte sequence"
Solution:
In open, after setting up encoding='utf-8', the problem is resolved.
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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.