1. 程式人生 > >Python輸出當前時間

Python輸出當前時間

應用中有時需要檢視一下服務當前時間,程式碼如下:

#!/usr/bin/env python
# _*_ coding: utf-8 _*_

import time

print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())