
Here, in this post, we will see how can we Get Any Country Date And Time Using Python which will be something like a World clock using Python. For this, we need the datetime module and python’s timezone module i.e. pytz.
Before we proceed further, let’s see the video for more detailed and easy explanation–
To install pytz python, type the below command in your terminal–
pip install pytz
We can print the names of all countries whose timezone is available using this module using the following code–
Example
import pytz time_zones = pytz.all_timezones print(time_zones)
Output
['Africa/Abidjan', 'Africa/Accra', 'Africa/Addis_Ababa', 'Africa/Algiers',........ 'W-SU', 'WET', 'Zulu']
To print the date and time of any country, we need to use both modules i.e. datetime and pytz.
Here is the code to print the date and time of any country–
Example
from datetime import datetime import pytz country_time_zone = pytz.timezone('America/New_York') country_time = datetime.now(country_time_zone) print(country_time.strftime("Date is %d-%m-%y and time is %H:%M:%S"))
Output
Date is 23-09-20 and time is 00:39:26
In the similar way, we can print the date and time of any number of countries. To do this, we can create the list of desired countries for which we want to get current date and time and can use for loop to print all date and time of all the desired countries.
Now, let’s see the code to Get Any Country Date And Time Using Python–
from datetime import datetimeimport pytz# list of desired countriesCountry_Zones = ['America/New_York', 'Asia/Kolkata', 'Australia/Sydney','Canada/Atlantic', 'Brazil/East','Chile/EasterIsland', 'Cuba', 'Egypt','Europe/Amsterdam', 'Europe/Athens', 'Europe/Berlin', 'Europe/Istanbul','Europe/Jersey', 'Europe/London', 'Europe/Moscow', 'Europe/Paris','Europe/Rome', 'Hongkong', 'Iceland', 'Indian/Maldives', 'Iran','Israel', 'Japan', 'NZ', 'US/Alaska', 'US/Arizona', 'US/Central','US/East-Indiana']country_time_zones = []for country_time_zone in Country_Zones:country_time_zones.append(pytz.timezone(country_time_zone))for i in range(len(country_time_zones)):country_time = datetime.now(country_time_zones[i])print(f"The date of {Country_Zones[i]} is {country_time.strftime('%d-%m-%y')} and The time of {Country_Zones[i]} is {country_time.strftime('%H:%M:%S')}")
Output
The date of America/New_York is 23-09-20 and The time of America/New_York is 00:46:13The date of Asia/Kolkata is 23-09-20 and The time of Asia/Kolkata is 10:16:13The date of Australia/Sydney is 23-09-20 and The time of Australia/Sydney is 14:46:13The date of Canada/Atlantic is 23-09-20 and The time of Canada/Atlantic is 01:46:13The date of Brazil/East is 23-09-20 and The time of Brazil/East is 01:46:13The date of Chile/EasterIsland is 22-09-20 and The time of Chile/EasterIsland is 23:46:13The date of Cuba is 23-09-20 and The time of Cuba is 00:46:13The date of Egypt is 23-09-20 and The time of Egypt is 06:46:13The date of Europe/Amsterdam is 23-09-20 and The time of Europe/Amsterdam is 06:46:13The date of Europe/Athens is 23-09-20 and The time of Europe/Athens is 07:46:13The date of Europe/Berlin is 23-09-20 and The time of Europe/Berlin is 06:46:13The date of Europe/Istanbul is 23-09-20 and The time of Europe/Istanbul is 07:46:13The date of Europe/Jersey is 23-09-20 and The time of Europe/Jersey is 05:46:13The date of Europe/London is 23-09-20 and The time of Europe/London is 05:46:13The date of Europe/Moscow is 23-09-20 and The time of Europe/Moscow is 07:46:13The date of Europe/Paris is 23-09-20 and The time of Europe/Paris is 06:46:13The date of Europe/Rome is 23-09-20 and The time of Europe/Rome is 06:46:13The date of Hongkong is 23-09-20 and The time of Hongkong is 12:46:13The date of Iceland is 23-09-20 and The time of Iceland is 04:46:13The date of Indian/Maldives is 23-09-20 and The time of Indian/Maldives is 09:46:13The date of Iran is 23-09-20 and The time of Iran is 08:16:13The date of Israel is 23-09-20 and The time of Israel is 07:46:13The date of Japan is 23-09-20 and The time of Japan is 13:46:13The date of NZ is 23-09-20 and The time of NZ is 16:46:13The date of US/Alaska is 22-09-20 and The time of US/Alaska is 20:46:13The date of US/Arizona is 22-09-20 and The time of US/Arizona is 21:46:13The date of US/Central is 22-09-20 and The time of US/Central is 23:46:13The date of US/East-Indiana is 23-09-20 and The time of US/East-Indiana is 00:46:13
Also read:
- Struggling to Generate Ghibli-Style AI Images? Here’s the Real Working Tool That Others Won’t Tell You About!
- ChatGPT vs DeepSeek: Who is the winner?
- People are becoming AI Engineer with this free course in 2025: Here is how to join this…
- Apply to Google’s Student Training in Engineering Program (STEP) Intern, 2025
- Self-Driving Car Saves Falling Pedestrian, Showcases Promise of Autonomous Technology
- Instant Karma: Employer Fires Tech Team with AI, Faces Backlash on LinkedIn While Seeking New Developers
- LinkedIn’s COO Reveals the AI Interview Question That Could Land You the Job in 2025
- Elon Musk’s xAI Raises $6 Billion, Valued at $45 Billion
- Google Unveils Veo 2 and Imagen 3: A New Era of AI-Generated Content
- Imagination to Reality, Unlocking the Future: Genesis Physics Engine for 4D Simulation
- Simple Code to compare Speed of Python, Java, and C++?
- Falling Stars Animation on Python.Hub October 2024
- Most Underrated Database Trick | Life-Saving SQL Command
- Python List Methods
- Top 5 Free HTML Resume Templates in 2024 | With Source Code
- How to See Connected Wi-Fi Passwords in Windows?
- 2023 Merry Christmas using Python Turtle
- 23 AI Tools You Won’t Believe are Free
- Python 3.12.1 is Now Available
- Best Deepfake Apps and Websites You Can Try for Fun