> For the complete documentation index, see [llms.txt](https://python.dainganxanh.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://python.dainganxanh.com/chuong8/get-current-time.md).

# Get Current time

**In this article, you will learn to get current time of your locale as well as different time zones in Python.**

There are a number of ways you can take to get current time in Python.

### Example 1: Current time using datetime object

```
from datetime import datetime

now = datetime.now()

current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time)
```

**Output**

```
Current Time = 07:41:19
```

In the above example, we have imported `datetime` class from the [datetime](https://www.programiz.com/python-programming/datetime) module. Then, we used `now()` method to get a `datetime` object containing current date and time.

Using [datetime.strftime()](https://www.programiz.com/python-programming/datetime/strftime) method, we then created a string representing current time.

If you need to create a `time` object containing current time, you can do something like this.

```
from datetime import datetime

now = datetime.now().time() # time object

print("now =", now)
print("type(now) =", type(now))	
```

**Output**

```
now = 07:43:37.457423
type(now) = <class 'datetime.time'>
```

### Example 2: Current time using time module

You can also get the current time using time module.

```
import time

t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)
```

**Output**

```
07:46:58
```

### Example 3: Current time of a timezone

If you need to find current time of a certain timezone, you can use [pytZ module](http://pytz.sourceforge.net/).

```
from datetime import datetime
import pytz

tz_NY = pytz.timezone('America/New_York') 
datetime_NY = datetime.now(tz_NY)
print("NY time:", datetime_NY.strftime("%H:%M:%S"))

tz_London = pytz.timezone('Europe/London')
datetime_London = datetime.now(tz_London)
print("London time:", datetime_London.strftime("%H:%M:%S"))
```

**Output**

```
NY time: 03:45:16
London time: 08:45:16
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://python.dainganxanh.com/chuong8/get-current-time.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
