Python中最好的计时方法?

时间:2017-04-07 03:09:10

标签: python time variable-assignment difference seconds

我需要它来完成我的任务,这是我第一次使用计算机科学。请任何人帮助解决这个问题。 问题。****键入一个return语句:“return”后跟执行上表所述计算的表达式。 (请记住,return语句用于将值返回给函数的调用者。) def seconds_difference(time_1,time_2):****     “”(数字,数字) - >数字

subprocess.run(["pdflatex", "/afullpath/a/b/c/mytemplate.tex"], cwd="/afullpath/a/b/c/")

1 个答案:

答案 0 :(得分:-1)

祝你班上好运。这是一些帮助:

def seconds_difference(first, second):
    return second - first

print(seconds_difference(1800.0, 2160.0))

你应该真正阅读有关功能的内容:

http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/functions.html