如何使用 Python 选择一年中的所有星期日?
使用Python...
我如何选择一年中的所有星期日(或任何一天)?
[ '01/03/2010','01/10/2010','01/17/2010','01/24/2010', ...]
这些日期代表 2010 年的星期日。我想这也适用于一周中的任何一天。
Using Python...
How can I select all of the Sundays (or any day for that matter) in a year?
[ '01/03/2010','01/10/2010','01/17/2010','01/24/2010', ...]
These dates represent the Sundays for 2010. This could also apply to any day of the week I suppose.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
您可以使用
datetime
date a> 模块查找一年中的第一个星期日,然后不断添加 7 天,生成新的星期日:You can use
date
from thedatetime
module to find the first Sunday in a year and then keep adding seven days, generating new Sundays:Pandas 为此目的提供了强大的功能,其
date_range()
函数。结果是 pandas
DatetimeIndex
,但可以轻松转换为列表。Pandas has great functionality for this purpose with its
date_range()
function.The result is a pandas
DatetimeIndex
, but can be converted to a list easily.使用 dateutil 模块,您可以通过以下方式生成列表:
尽管查找所有星期日并不难如果没有 dateutil,该模块会很方便,特别是当您有更复杂或更多样化的日期计算时。
如果您使用的是 Debian/Ubuntu,dateutil 由 python-dateutil 包提供。
Using the dateutil module, you could generate the list this way:
Although finding all Sundays is not too hard to do without dateutil, the module is handy especially if you have more complicated or varied date calculations.
If you are using Debian/Ubuntu, dateutil is provided by the python-dateutil package.
如果寻找更通用的方法(即不仅仅是星期日),我们可以在sth的基础上进行构建的答案:
这会将当天的名称转换为
int
。然后执行以下操作:
注意
alldays()
中存在%7
。这输出:也可以:
这将为您提供:
If looking for a more general approach (ie not only Sundays), we can build on sth's answer:
This will translate the name of the day into an
int
.Then do:
Note the presence of
% 7
inalldays()
. This outputs:Can also do:
which will give you:
您可以迭代当年的日历。
以下内容应返回给定年份的所有星期二和星期四。
You can iterate over a calendar for that year.
The below should return all Tuesdays and Thursdays for a given year.
它将返回给定日期范围的所有星期日日期。
It will return all Sunday date of given date range.
这是一个完整的生成器函数,它基于 @sth 的解决方案构建。它包括他的解决方案评论中提到的关键修复。
您可以指定星期几(使用 Python 索引,0=星期一到 6=星期日)、开始日期和要枚举的周数。
示例用法获取从 2018 年 1 月 1 日开始的 10 周内的所有星期三。
上面的代码产生:
Here's a complete generator function that builds on the solution from @sth. It includes the crucial fix that was mentioned in his solution's comments.
You can specify the day of week (using Python's indexing with 0=Monday to 6=Sunday), the starting date, and the number of weeks to enumerate.
Example usage to get all Wednesdays starting on January 1, 2018, for 10 weeks.
The above code produces:
根据@sth的回答,
如果你想要每个星期一,我想给你一个没有功能的替代方案
according to @sth answer I like to give you an alternative without a function
if you want every monday for example
根据@sth回答,它会丢失第一天是星期日的那一天。这样会更好:
according to @sth answer,it will lost the day when 1st is sunday.This will be better: