Python Get Current Date And Time Example

Hello Friends,
Now let's see example of how to get current datetime in python. I am going to show you python get current date and time. We will learn get current datetime in python.
The datetime module is supplies classes for manipulating dates and times. This article will give you example of get current datetime in python.
Here I will give three example for how to get current datetime in python. I am use datetime and time module to get current current date time. So let's see the below example:
Example 1 example1.py// import datetime module from datetime import datetime currentTimeDate = datetime.now() print(currentTimeDate)Run Example
python example1.pyOutput:
2021-12-14 16:25:25.425925Example 2 example2.py
// import datetime module from datetime import datetime currentTimeDate = datetime.now() currentTimeDate = currentTimeDate.strftime("%d/%m/%Y %H:%M:%S") print(currentTimeDate)Run Example
python example2.pyOutput:
14/12/2021 16:26:06Example 3 example3.py
// import datetime module import datetime // import pytz module for timezone() import pytz current_time = datetime.datetime.now(pytz.timezone('Asia/Kolkata')) print(current_time)Run Example
python example3.pyOutput:
2021-12-14 16:26:52.295001+05:30
It will help you....
Divyang Vadodariya
My name is Divyang Vadodariya. I'm a full-stack developer, entrepreneur and owner of RvSolutionStuff. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Javascript, JQuery, Laravel, Codeigniter, VueJS, AngularJS and Bootstrap ,etc from the early stage.

We are Recommending you
- Example Of Trigger On After Delete With Update Query Mysql
- How To Get User Agent Value In Laravel?
- How To Convert Array Values To Lowercase In PHP?
- How To Addition Two Number In Python ?
- How To Add Months Date In Python?
- How To Change Date Format In Python?
- How To Add Days Date In Python?
- How To Find Compound Interest In Python Program?
- How To Find Length Of A String In Python?
- How To Calculate Age From Date Of Birth In PHP?
Copyright © 2023 www.RVSolutionStuff.com • All Rights Reserved