Time module in python

3
this module is used to display the current date and time of the system with different time formats.

It is the most important module of python, If you want to display current time or difference between time then we always prefer the time module in Python.

Example of time module in Python:-

import time
print(time.time())
print(time.localtime(time.time()))
print(time.asctime(time.localtime(time.time())))

Another Example of Time Module In Python:-

import time
print(time.time())
print(time.localtime(time.time()))
print(time.asctime(time.localtime(time.time())))

d = time.localtime(time.time())
print(str(d.tm_year) + ":"+ str(d.tm_mon) + ":" + str(d.tm_mday))


Tags

Post a Comment

3Comments

POST Answer of Questions and ASK to Doubt

  1. import time
    print(time.time)
    print(time.localtime(time.time()))
    print(time.asctime(time.localtime(time.time())))

    ReplyDelete
  2. import time
    second = time.time()
    print("second since epoch", second)

    ReplyDelete
  3. import time
    second = time.time()
    print("second since epoch", second)

    ReplyDelete
Post a Comment