python系统时间
❶ 怎样使用python修改windows的系统时间
#-*- coding:utf-8 -*-
import socket
import struct
import time
import win32api
TimeServer = '210.72.145.44' #国家授时中心ip
Port = 123
def getTime():
TIME_1970 = 2208988800L
client = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
data = '\x1b' + 47 * '\0'
client.sendto(data, (TimeServer, Port))
data, address = client.recvfrom(1024)
data_result = struct.unpack('!12I', data)[10]
data_result -= TIME_1970
return data_result
def setSystemTime():
tm_year, tm_mon, tm_mday, tm_hour, tm_min, tm_sec, tm_wday, tm_yday, tm_isdst = time.gmtime(getTime())
win32api.SetSystemTime(tm_year, tm_mon, tm_wday, tm_mday, tm_hour, tm_min, tm_sec, 0)
print "Set System OK!"
if __name__ == '__main__':
setSystemTime()
print "%d-%d-%d %d:%d:%d" % time.localtime(getTime())[:6]
❷ python编程,使用Tkinter中的文本框显示系统时间
Python编程中,用Tkinter中的文本框获取系统当前的时间并且显示,代码如下:
importsys
fromtkinterimport*
importtime
deftick():
globaltime1
#从运行程序的计算机上面获取当前的系统时间
time2=time.strftime('%H:%M:%S')
#如果时间发生变化,代码自动更新显示的系统时间
iftime2!=time1:
time1=time2
clock.config(text=time2)
#
#
#coulse>200ms,butdisplaygetsjerky
clock.after(200,tick)
root=Tk()
time1=''
status=Label(root,text="v1.0",bd=1,relief=SUNKEN,anchor=W)
status.grid(row=0,column=0)
clock=Label(root,font=('times',20,'bold'),bg='green')
clock.grid(row=0,column=1)
tick()
root.mainloop()
❸ python中,获取了当前时间,如何保持一直是当前时间,比如1秒更新一次
可以试一下多线程编程,将主程序与时间更新程序分开并且同时运行回,具体可以参看网站答http://blog.sina.com.cn/s/blog_4b5039210100esc1.html
❹ python 去年的当前时间
import datetime
dt = datetime.datetime(2019, 10, 20, 15, 46, 23)
dt.replace(year=dt.year-1)
❺ python如何获得当前系统时间,并将此时间赋值给create_time变量呢
import datetime
create_time = datetime.datetime.now()
或者你只是要时间戳的话
imoport time
create_time = time.time()
❻ python作业 获取系统时间
import datetime as dt
now_time = str(dt.datetime.now().strftime('%F %T'))
with open('xxxx.txt','w') as t:
t.write(now_time)
缩进你调一下,这不好确定缩进“xxxx.txt”是你的文件,需要跟你的Python代码文件在一个文件夹,否则前面要写绝对路径。%f表示年月日,%t表示后面的时间。
❼ python怎样获取系统时间
import datetime
nowTime=datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')#现在
pastTime = (datetime.datetime.now()-datetime.timedelta(hours=1)).strftime('%Y-%m-%d %H:%M:%S')#过去一小时时间
afterTomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=2)).strftime('%Y-%m-%d %H:%M:%S')#后天
tomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=1)).strftime('%Y-%m-%d %H:%M:%S')#明天
print('
',nowTime,'
',pastTime,'
',afterTomorrowTime,'
',tomorrowTime)
运行结果:
❽ python 怎么获取当前时间
1、#!/usr/bin/python -t
import time
print time.asctime( time.localtime(time.time()) )
2、print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
3、print "%s" % time.ctime()
4、from datetime import datetime
print datetime.now()
print datetime.utcnow()
❾ python 获取系统时间有问题(时区)
确保系统时区设置正确。date命令显示的是本地时间。
然后 python datetime.now() 默认就是本地时间。
>>>importdatetime
>>>datetime.datetime.now()
datetime.datetime(2016,8,5,16,51,52,67275)
>>>print(datetime.datetime.now())
2016-08-0516:51:59.972713
>>>