w3resource

Python: Extract year, month, date and time using Lambda

Python Lambda: Exercise-8 with Solution

Write a Python program to extract year, month, date and time using Lambda.

Sample Solution:

Python Code :

import datetime
now = datetime.datetime.now()
print(now)
year = lambda x: x.year
month = lambda x: x.month
day = lambda x: x.day
t = lambda x: x.time()
print(year(now))
print(month(now))
print(day(now))
print(t(now))

Sample Output:

2020-01-15 09:03:32.744178
2020
1
15
09:03:32.744178

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:


Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find if a given string starts with a given character using Lambda.
Next: Write a Python program to check whether a given string is number or not using Lambda.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day

Returns the n maximum elements from the provided list. If n is greater than or equal to the provided list's length, then return the original list (sorted in descending order)

Example:

def tips_max_n(lst, n=1):
  return sorted(lst, reverse=True)[:n]
print(tips_max_n([1, 3, 5]))
print(tips_max_n([1, 3, 5], 2))

Output:

[5]
[5, 3]