2024年8个Python 实用脚本,2024年最新面试题附答案

简介: 2024年8个Python 实用脚本,2024年最新面试题附答案
filelists.append(os.path.join(parent,filename))
#统计一个的行数
def countLine(fname):
count = 0

把文件做二进制看待,read.

for file_line in open(fname, ‘rb’).readlines():
if file_line != ‘’ and file_line != ‘\n’: #过滤掉空行
count += 1
print (fname + ‘----’ , count)
return count
if name == ‘main’ :
startTime = time.clock()
getFile(basedir)
totalline = 0
for filelist in filelists:
totalline = totalline + countLine(filelist)
print (‘total lines:’,totalline)
print (‘Done! Cost Time: %0.2f second’ % (time.clock() - startTime))

3.扫描当前目录和所有子目录并显示大小。

‘’’
遇到问题没人解答?小编创建了一个Python学习交流QQ群:579817333
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
‘’’
import os
import sys
try:
directory = sys.argv[1]
except IndexError:
sys.exit(“Must provide an argument.”)
dir_size = 0
fsizedicr = {‘Bytes’: 1,
‘Kilobytes’: float(1) / 1024,
‘Megabytes’: float(1) / (1024 * 1024),
‘Gigabytes’: float(1) / (1024 * 1024 * 1024)}
for (path, dirs, files) in os.walk(directory):
for file in files:
filename = os.path.join(path, file)
dir_size += os.path.getsize(filename)
fsizeList = [str(round(fsizedicr[key] * dir_size, 2)) + " " + key for key in fsizedicr]
if dir_size == 0: print (“File Empty”)
else:
for units in sorted(fsizeList)[::-1]:
print ("Folder Size: " + units)

4.将源目录240天以上的所有文件移动到目标目录。

import shutil
import sys
import time
import os
import argparse
usage = ‘python move_files_over_x_days.py -src [SRC] -dst [DST] -days [DAYS]’
description = ‘Move files from src to dst if they are older than a certain number of days. Default is 240 days’
args_parser = argparse.ArgumentParser(usage=usage, description=description)
args_parser.add_argument(‘-src’, ‘–src’, type=str, nargs=‘?’, default=‘.’, help=‘(OPTIONAL) Directory where files will be moved from. Defaults to current directory’)
args_parser.add_argument(‘-dst’, ‘–dst’, type=str, nargs=‘?’, required=True, help=‘(REQUIRED) Directory where files will be moved to.’)
args_parser.add_argument(‘-days’, ‘–days’, type=int, nargs=‘?’, default=240, help=‘(OPTIONAL) Days value specifies the minimum age of files to be moved. Default is 240.’)
args = args_parser.parse_args()
if args.days < 0:
args.days = 0
src = args.src # 设置源目录
dst = args.dst # 设置目标目录
days = args.days # 设置天数
now = time.time() # 获得当前时间
if not os.path.exists(dst):
os.mkdir(dst)
for f in os.listdir(src): # 遍历源目录所有文件
if os.stat(f).st_mtime < now - days * 86400: # 判断是否超过240天
if os.path.isfile(f): # 检查是否是文件
shutil.move(f, dst) # 移动文件

5.扫描脚本目录,并给出不同类型脚本的计数。

import os
import shutil
from time import strftime
logsdir=“c:\logs\puttylogs”
zipdir=“c:\logs\puttylogs\zipped_logs”
zip_program=“zip.exe”
for files in os.listdir(logsdir):
if files.endswith(“.log”):
files1=files+“.”+strftime(“%Y-%m-%d”)+“.zip”
os.chdir(logsdir)
os.system(zip_program + " " + files1 +" "+ files)
shutil.move(files1, zipdir)
os.remove(files)

6.下载Leetcode的算法题。

‘’’
遇到问题没人解答?小编创建了一个Python学习交流QQ群:579817333
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
‘’’
import sys
import re
import os
import argparse
import requests
from lxml import html as lxml_html
try:
import html
except ImportError:
import HTMLParser
html = HTMLParser.HTMLParser()
try:
import cPickle as pk
except ImportError:
import pickle as pk
class LeetcodeProblems(object):
def get_problems_info(self):
leetcode_url = ‘https://leetcode.com/problemset/algorithms’
res = requests.get(leetcode_url)
if not res.ok:
print(‘request error’)
sys.exit()
cm = res.text
cmt = cm.split(‘tbody>’)[-2]
indexs = re.findall(r’(\d+)', cmt)
problem_urls = [‘https://leetcode.com’ + url \
for url in re.findall(
r’
levels = re.findall(r"(.+?)", cmt)
tinfos = zip(indexs, levels, problem_urls)
assert (len(indexs) == len(problem_urls) == len(levels))
infos = []
for info in tinfos:
res = requests.get(info[-1])
if not res.ok:
print(‘request error’)
sys.exit()
tree = lxml_html.fromstring(res.text)
title = tree.xpath(‘//meta[@property=“og:title”]/@content’)[0]
description = tree.xpath(‘//meta[@property=“description”]/@content’)
if not description:
description = tree.xpath(‘//meta[@property=“og:description”]/@content’)[0]
else:
description = description[0]
description = html.unescape(description.strip())
tags = tree.xpath(‘//div[@id=“tags”]/following::a[@class=“btn btn-xs btn-primary”]/text()’)
infos.append(
{
‘title’: title,
‘level’: info[1],
‘index’: int(info[0]),
‘description’: description,
‘tags’: tags
}
)
with open(‘leecode_problems.pk’, ‘wb’) as g:
pk.dump(infos, g)
return infos
def to_text(self, pm_infos):
if self.args.index:
key = ‘index’
elif self.args.title:
key = ‘title’
elif self.args.tag:
key = ‘tags’
elif self.args.level:
key = ‘level’
else:
key = ‘index’
infos = sorted(pm_infos, key=lambda i: i[key])
text_template = ‘## {index} - {title}\n’ \
‘{level} {tags}\n’ \
‘{description}\n’ + ‘\n’ * self.args.line
text = ‘’
for info in infos:
if self.args.rm_blank:
info[‘description’] = re.sub(r’[\n\r]+‘, r’\n’, info[‘description’])
text += text_template.format(**info)
with open(‘leecode problems.txt’, ‘w’) as g:
g.write(text)
def run(self):
if os.path.exists(‘leecode_problems.pk’) and not self.args.redownload:
with open(‘leecode_problems.pk’, ‘rb’) as f:
pm_infos = pk.load(f)
else:
pm_infos = self.get_problems_info()
print(‘find %s problems.’ % len(pm_infos))
self.to_text(pm_infos)
def handle_args(argv):
p = argparse.ArgumentParser(description=‘extract all leecode problems to location’)
p.add_argument(‘–index’, action=‘store_true’, help=‘sort by index’)
p.add_argument(‘–level’, action=‘store_true’, help=‘sort by level’)
p.add_argument(‘–tag’, action=‘store_true’, help=‘sort by tag’)
p.add_argument(‘–title’, action=‘store_true’, help=‘sort by title’)
p.add_argument(‘–rm_blank’, action=‘store_true’, help=‘remove blank’)
p.add_argument(‘–line’, action=‘store’, type=int, default=10, help=‘blank of two problems’)
p.add_argument(‘-r’, ‘–redownload’, action=‘store_true’, help=‘redownload data’)
args = p.parse_args(argv[1:])
return args
def main(argv):
args = handle_args(argv)
x = LeetcodeProblems()
x.args = args
x.run()
if name == ‘main’:
argv = sys.argv
main(argv)

7.将 Markdown 转换为 HTML。

import sys
import os
from bs4 import BeautifulSoup
import markdown
class MarkdownToHtml:
headTag = ‘’
def init(self,cssFilePath = None):
if cssFilePath != None:
self.genStyle(cssFilePath)
def genStyle(self,cssFilePath):
with open(cssFilePath,‘r’) as f:
cssString = f.read()
self.headTag = self.headTag[:-7] + ‘’.format(cssString) + self.headTag[-7:]
def markdownToHtml(self, sourceFilePath, destinationDirectory = None, outputFileName = None):
if not destinationDirectory:

未定义输出目录则将源文件目录(注意要转换为绝对路径)作为输出目录

destinationDirectory = os.path.dirname(os.path.abspath(sourceFilePath))
if not outputFileName:

未定义输出文件名则沿用输入文件名

outputFileName = os.path.splitext(os.path.basename(sourceFilePath))[0] + ‘.html’
if destinationDirectory[-1] != ‘/’:
destinationDirectory += ‘/’
with open(sourceFilePath,‘r’, encoding=‘utf8’) as f:
markdownText = f.read()

编译出原始 HTML 文本

rawHtml = self.headTag + markdown.markdown(markdownText,output_format=‘html5’)

格式化 HTML 文本为可读性更强的格式

beautifyHtml = BeautifulSoup(rawHtml,‘html5lib’).prettify()
with open(destinationDirectory + outputFileName, ‘w’, encoding=‘utf8’) as f:
f.write(beautifyHtml)
if name == “main”:
mth = MarkdownToHtml()

做一个命令行参数列表的浅拷贝,不包含脚本文件名

argv = sys.argv[1:]

目前列表 argv 可能包含源文件路径之外的元素(即选项信息)

程序最后遍历列表 argv 进行编译 markdown 时,列表中的元素必须全部是源文件路径

outputDirectory = None
if ‘-s’ in argv:

最后

🍅 硬核资料:关注即可领取PPT模板、简历模板、行业经典书籍PDF。

🍅 技术互助:技术群大佬指点迷津,你的问题可能不是问题,求资源在群里喊一声。

🍅 面试题库:由技术群里的小伙伴们共同投稿,热乎的大厂面试真题,持续更新中。

🍅 知识体系:含编程语言、算法、大数据生态圈组件(Mysql、Hive、Spark、Flink)、数据仓库、Python、前端等等。


相关文章
|
3天前
|
Python
用python转移小文件到指定目录并压缩,脚本封装
这篇文章介绍了如何使用Python脚本将大量小文件转移到指定目录,并在达到大约250MB时进行压缩。
16 2
|
9天前
|
运维 Prometheus 监控
自动化运维的魔法:使用Python脚本简化日常任务
【8月更文挑战第50天】在数字化时代的浪潮中,自动化运维成为提升效率、减少人为错误的利器。本文将通过一个实际案例,展示如何利用Python脚本实现自动化部署和监控,从而让运维工作变得更加轻松和高效。我们将一起探索代码的力量,解锁自动化运维的神秘面纱,让你的工作环境焕然一新。
127 81
|
2天前
|
Web App开发 存储 安全
Python编写脚本,打开浏览器输入网址,自动化登陆网站
Python编写脚本,打开浏览器输入网址,自动化登陆网站
11 4
|
4天前
|
运维 监控 Python
自动化运维:使用Python脚本简化日常任务
【9月更文挑战第23天】在本文中,我们将探索如何通过编写Python脚本来自动化常见的系统管理任务,从而提升效率并减少人为错误。文章将介绍基础的Python编程概念、实用的库函数,以及如何将这些知识应用于创建有用的自动化工具。无论你是新手还是有经验的系统管理员,这篇文章都将为你提供有价值的见解和技巧,帮助你在日常工作中实现自动化。
|
6天前
|
运维 监控 安全
自动化运维:使用Python脚本简化日常任务
【9月更文挑战第21天】在快速迭代的软件开发环境中,运维工作往往因为重复性高、易出错而被诟病。本文将介绍如何通过编写简单的Python脚本来自动化这些日常任务,从而提升效率和减少错误。我们将以实际案例为基础,展示如何从零开始构建一个自动化脚本,并解释其背后的原理。文章旨在启发读者思考如何利用编程技能来解决工作中的实际问题,进而探索技术与日常工作流程结合的可能性。
|
2天前
|
Python Windows
python之windows脚本启动bat
python之windows脚本启动bat
|
24天前
|
存储 Shell 区块链
怎么把Python脚本打包成可执行程序?
该文档介绍了如何将Python脚本及其运行环境打包成EXE可执行文件,以便在不具备Python环境的计算机上运行。首先确保Python脚本能够正常运行,然后通过安装PyInstaller并使用`--onefile`参数将脚本打包成独立的EXE文件。此外,还提供了去除命令行窗口和指定可执行文件图标的详细方法。这些步骤帮助用户轻松地将Python程序分发给最终用户。
怎么把Python脚本打包成可执行程序?
|
3天前
|
运维 监控 Python
自动化运维:使用Python脚本实现日常任务
【9月更文挑战第24天】在现代的软件开发周期中,运维工作扮演着至关重要的角色。本文将介绍如何利用Python编写简单的自动化脚本,来优化和简化日常的运维任务。从备份数据到系统监控,Python的易用性和强大的库支持使其成为自动化运维的首选工具。跟随这篇文章,你将学习如何使用Python编写自己的自动化脚本,提高运维效率,减少人为错误,并最终提升整个开发流程的质量。
|
12天前
|
存储 程序员 开发者
Python 编程入门:从零基础到编写实用脚本
【9月更文挑战第15天】本文是一篇面向初学者的Python编程入门指南,通过浅显易懂的语言和实际的代码示例,引导读者逐步掌握Python的基本概念、语法规则以及如何运用Python解决实际问题。文章不仅介绍了Python的基础知识点,还通过实例演示了如何将这些知识应用于日常编程任务中,帮助读者快速上手并能够独立编写简单的Python脚本。
|
12天前
|
监控 Ubuntu API
Python脚本监控Ubuntu系统进程内存的实现方式
通过这种方法,我们可以很容易地监控Ubuntu系统中进程的内存使用情况,对于性能分析和资源管理具有很大的帮助。这只是 `psutil`库功能的冰山一角,`psutil`还能够提供更多关于系统和进程的详细信息,强烈推荐进一步探索这个强大的库。
27 1