w3resource

Python: Print structure time in local time

Python Datetime: Exercise-61 with Solution

Write a Python program that takes a given number of seconds and passes since the epoch as an argument. Print structure time in local time.

Sample Solution:

Python Code:

import time
result = time.localtime(414538698)
print("\nResult:", result)
print("\nYear:", result.tm_year)

Sample Output:

Result: time.struct_time(tm_year=1983, tm_mon=2, tm_mday=19, tm_hour=21, tm_min=38, tm_sec=18, tm_wday=5, tm_yday=50, tm_isdst=0)

Year: 1983

Flowchart:

Flowchart: Print structure time in local time.

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to print simple format of time, full names and the representation format and preferred date time format.
Next: Write a Python program that takes a tuple containing 9 elements corresponding to structure time as an argument and returns a string representing it.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.