w3resource

Python: Convert a given time in seconds since the epoch to a string representing local time

Python Datetime: Exercise-59 with Solution

Write a Python program to convert a given time in seconds since the epoch to a string representing local time.

Sample Solution:

Python Code:

import time
print(time.ctime())
print(time.ctime(236543789))

Sample Output:

Tue Apr 13 11:51:51 2021
Thu Jun 30 18:36:29 1977 

Flowchart:

Flowchart: Convert a given time in seconds since the epoch to a string representing local time.

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program that can suspend execution of a given script a given number of seconds.
Next: Write a Python program to print simple format of time, full names and the representation format and preferred date time format.

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.