#!/usr/bin/python
# -*- coding: utf-8 -*-
from time import time
start = time()
stop = time()
print("程序执行时间"+str(stop-start) + "秒")
标签:none
发布时间:December 12, 2013 // 分类:Python // No Comments
#!/usr/bin/python
# -*- coding: utf-8 -*-
from time import time
start = time()
stop = time()
print("程序执行时间"+str(stop-start) + "秒")
标签:none