python获取当前日期 年月日时分秒
from datetime import datetime now = datetime.now() current_time = now.strftime("%Y-%m-%d %H:%M:%S")
################################