Ad Code

✨🎆 Diwali Dhamaka Offer! 🎆✨

Get 20% OFF on All Courses at Shiva Concept Solution click

Time module in python

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))


Post a Comment

3 Comments

  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 Answer of Questions and ASK to Doubt