Created
April 25, 2020 10:15
-
-
Save aniruddha27/63468c406b5170b1a5e3cd4eb07d852d to your computer and use it in GitHub Desktop.
This file contains 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
# date in string format | |
d1 = datetime.now() | |
# string format for date | |
print(d1.ctime()) | |
# slicing to extract date | |
print(d1.ctime()[:10]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment