在Python 中查找週數
在Python 中,datetime 模組提供了一種便捷的方法來檢索給定日期的周數。以下是如何使用它來找出當年 6 月 16 日的周數:
<code class="python">import datetime # Instantiate a date object for June 16th date = datetime.date(datetime.now().year, 6, 16) # Get the year, week number, and weekday using the isocalendar() method year, week, weekday = date.isocalendar() # Print the week number print(f"Week number: {week}")</code>
此代碼的輸出將是當年 6 月 16 日對應的周數。
說明:
以上是如何在 Python 中尋找日期的周數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!