Time Methods - time() localtime() asctime() in Python Programming Language

In this tutorial we will learn about time methods which will helpful to get current time.By importing the time module we can use methods which belongs to them.Using these methods we can get current time date day month year.for that we will use methods time() which will give time in seconds.To present this in pleasant way we will use localtime() which will give output as tuple. By using asctime() we can get current time in another format.



Watch this tutorial to learn about time methods