Skip to content →

标签: Python

获取每日笑话 GUI:用于每日幽默剂量的简单 Python 程序

你需要每日幽默吗?您想以愉快的笑声开始新的一天吗?看看 Get Daily Joke GUI 就知道了。这个简单的 Python 程序从 jokeAPI 中获取一个笑话并将其显示在一个窗口中,让您只需单击几下即可轻松获得每日幽默剂量。

那么这个程序是如何创建的呢?让我们仔细看看:

Leave a Comment

Listing the top-size files with python

List Top File-size Files

This Python script is designed to list the top files by size on a file drive (under Windows-OS), as determined by the user.

Requirements

In order to use this script, you must have Python 3 installed on your system. You will also need to have the os and sys modules installed.

Leave a Comment

使用 Python 按文件扩展名对目录中的文件进行排序

这是一个python 脚本,它按文件扩展名对目录中的文件进行排序
将待排序的目录和待排序的文件结尾作为输入参数。
例如,该脚本对于在随着时间的推移不断增长的下载文件夹中创建顺序非常有帮助。

Leave a Comment