Created
January 10, 2019 01:26
-
-
Save Ventsislav-Yordanov/8519fc08c53c8d4f399d6b5d713bd22d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime # importing the "datetime" module | |
def print_current_date(): | |
current_date = datetime.datetime.now().date() | |
print(current_date) | |
print_current_date() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment