diff --git a/date_time.py b/date_time.py new file mode 100644 index 0000000..28e7bcc --- /dev/null +++ b/date_time.py @@ -0,0 +1,13 @@ +# Sebastian Raschka, 03/2014 +# Date and Time in Python + +import time + +# print time HOURS:MINUTES:SECONDS +# e.g., '10:50:58' +print(time.strftime("%H:%M:%S")) + + +# print current date DAY:MONTH:YEAR +# e.g., '06/03/2014' +print(time.strftime("%d/%m/%Y")) diff --git a/pil_image_processing.py b/pil_image_processing.py new file mode 100644 index 0000000..e69de29