Welcome to Foundation of Data Science Laboratory
Welcome to Foundation of Data Science Laboratory
Link for installation of anaconda - https://docs.anaconda.com/anaconda/install/windows/
Program to display data and time
from datetime import datetime
current_time = datetime.now()
print(current_time.date())
print(current_time.time())Â