× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



You can call Python into a CLLE from Richard Schoen's QSHoni.

$ python
Python 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
from datetime import date, timedelta
friday = 4
today = date.today()
delta = today.weekday() - friday
last_friday = today - timedelta((7 if delta < 0 else 0) + delta)
print(last_friday)
2023-07-28
today = date(2023, 8, 4)
delta = today.weekday() - friday
last_friday = today - timedelta((7 if delta < 0 else 0) + delta)
print(last_friday)
2023-08-04
today = date(2023, 8, 7)
delta = today.weekday() - friday
last_friday = today - timedelta((7 if delta < 0 else 0) + delta)
print(last_friday)
2023-08-04

On Thu, Aug 3, 2023 at 1:30 PM Jim Oberholtzer <midrangel@xxxxxxxxxxxxxxxxx>
wrote:

I need to retrieve the date from last Friday.




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.