This Python DateTime tutorial will teach you how to get the current year in Python. You can find the current year using the following code:
# Import the datetime module import datetime # Get the current year year = datetime.date.today().year # Display the current year print("Current year:", str(year))