w3resource

Python: Print simple format of time, full names and the representation format and preferred date time format

Python Datetime: Exercise-60 with Solution

Write a Python program that prints the time, names, representation format, and the preferred date time format in a simple format.

Sample Solution:

Python Code:

import time
print("\nSimple format of time:")
s = time.strftime("%a, %d %b %Y %H:%M:%S + 1010", time.gmtime())
print(s)
print("\nFull names and the representation:")
s = time.strftime("%A, %D %B %Y %H:%M:%S + 0000", time.gmtime())
print( s)
print("\nPreferred date time format:")
s = time.strftime("%c")
print(s)
s = time.strftime("%x, %X, %y, %Y")
print("Example 11:", s)

Sample Output:

Simple format of time:
Tue, 13 Apr 2021 12:02:01 + 1010

Full names and the representation:
Tuesday, 04/13/21 April 2021 12:02:01 + 0000

Preferred date time format:
Tue Apr 13 12:02:01 2021
Example 11: 04/13/21, 12:02:01, 21, 2021

Flowchart:

Flowchart: Print simple format of time, full names and the representation format and preferred date time format.

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to convert a given time in seconds since the epoch to a string representing local time.
Next: Write a Python program that takes a given number of seconds and pass since epoch as an argument. Print structure time in local time.

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.