Welcome folks today in this blog post we will be converting current date and time
to timezone in python using datetime
library. All the full source code of the application is shown below.
Get Started
In order to get started you need to make an app.py
file and copy paste the following code
app.py
1 2 3 4 5 6 7 |
from datetime import datetime # current date and time now = datetime.now() timestamp = datetime.timestamp(now) print("timestamp =", timestamp) |
Now if you execute the above python script by typing the below command as shown below
python app.py