As we now datetime type has the following structure: datetime(year, month, day[, hour[, minute[, second[, microsecond[, tzinfo]]]]]). So all that you need is to find a way how to fulfil required options.
'strptime' is not yet implemented(otherwise you will have ability to simply call datetime.datetime.strptime(DateTime.Now.ToString(format), format).strftime(format)) in IronPython so you can use the following code(not very optimized one) for now:
from System import DateTime
import datetime
d = DateTime.Now
print datetime.date(d.Year, d.Month, d.Day)
print datetime.datetime(d.Year, d.Month, d.Day, d.Hour, d.Minute, d.Second)