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:

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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join