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


إرسال تعليق

3 تعليقات

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

    ردحذف
  2. import time
    second = time.time()
    print("second since epoch", second)

    ردحذف
  3. import time
    second = time.time()
    print("second since epoch", second)

    ردحذف

POST Answer of Questions and ASK to Doubt