Fasilzy 发表于 2023-11-10 16:10:55

找不同

这个是我自己写的def time_test(test1):
    print("start")
    start = time.time()
    test1()
    end = time.time()
    print(f" test1 takes{(end - start:.3f)}")
   
SyntaxError: incomplete input
执行不了
这个是发帖求助然后老哥改的可以执行def time_test(test1):
    print("start")
    start = time.time()
    test1()
    end = time.time()
    print(f" test1 takes{(end - start):.3f}")

我为啥看不出区别阿

isdkz 发表于 2023-11-10 16:17:03

你的括号的位置错了:

错误:print(f" test1 takes{(end - start:.3f)}")
正确:print(f" test1 takes{(end - start):.3f}")
页: [1]
查看完整版本: 找不同