Remove superfluous second argument in answer 33

This commit is contained in:
Haksell
2020-05-02 09:47:54 +02:00
parent 8c96897af3
commit 6541c23057

View File

@@ -393,9 +393,9 @@ How to get the dates of yesterday, today and tomorrow? (★☆☆)
hint: np.datetime64, np.timedelta64
< a33
yesterday = np.datetime64('today', 'D') - np.timedelta64(1, 'D')
today = np.datetime64('today', 'D')
tomorrow = np.datetime64('today', 'D') + np.timedelta64(1, 'D')
yesterday = np.datetime64('today') - np.timedelta64(1)
today = np.datetime64('today')
tomorrow = np.datetime64('today') + np.timedelta64(1)
< q34
How to get all the dates corresponding to the month of July 2016? (★★☆)