คุณสามารถจัดรูปแบบเวลาใดก็ได้ตามความต้องการของคุณ แต่วิธีง่ายๆ ในการหาเวลาในรูปแบบที่อ่านได้คือ asctime() -
ตัวอย่าง
#!/usr/bin/python import time; localtime = time.asctime( time.localtime(time.time()) ) print "Local current time :", localtime
ผลลัพธ์
สิ่งนี้จะทำให้เกิดผลลัพธ์ดังต่อไปนี้ -
Local current time : Tue Jan 13 10:17:09 2009