Date and Time

Lesson 01/06 – The datetime Library

[code lang=”python”]
from datetime import datetime
[/code]

Lesson 02/06 – Getting the Current Date and Time

[code lang=”python”]
from datetime import datetime
now = datetime.now ()
print now
[/code]

Lesson 03/06 – Extracting Information

[code lang=”python”]
from datetime import datetime
now = datetime.now ()
print now
print now.month
print now.day
print now.year
[/code]

Lesson 04/06 – Hot Date

[code lang=”python”]
from datetime import datetime
now = datetime.now ()
print now
print now.month
print now.day
print now.year
print str(now.month) + str("/") + str(now.day) + str("/") + str(now.year)
[/code]

Lesson 05/06 – Pretty Time

[code lang=”python”]
from datetime import datetime
now = datetime.now ()
print now
print now.month
print now.day
print now.year
print str(now.month) + str("/") + str(now.day) + str("/") + str(now.year)
print str(now.hour) + str(":") + str(now.minute) + str(":") + str(now.second) + str(":")
[/code]

Lesson 06/06 – Grand Finale

[code lang=”python”]
from datetime import datetime
now = datetime.now ()
print now
print now.month
print now.day
print now.year
print str(now.month) + str("/") + str(now.day) + str("/") + str(now.year)
print str(now.hour) + str(":") + str(now.minute) + str(":") + str(now.second)
print str(now.month) + str("/") + str(now.day) + str("/") + str(now.year) + " " + str(now.hour) + str(":") + str(now.minute) + str(":") + str(now.second)
[/code]

 

Leave a Reply

Your email address will not be published. Required fields are marked *

To create code blocks or other preformatted text, indent by four spaces:

    This will be displayed in a monospaced font. The first four 
    spaces will be stripped off, but all other whitespace
    will be preserved.
    
    Markdown is turned off in code blocks:
     [This is not a link](http://example.com)

To create not a block, but an inline code span, use backticks:

Here is some inline `code`.

For more help see http://daringfireball.net/projects/markdown/syntax