栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

格式化字符串与串联

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

格式化字符串与串联

这只是为了外观。您可以一眼看出格式是什么。我们中的许多人都比微优化更喜欢可读性。

让我们看看IPython的意思

%timeit

Python 3.7.2 (default, Jan  3 2019, 02:55:40)IPython 5.8.0Intel(R) Core(TM) i5-4590T CPU @ 2.00GHzIn [1]: %timeit root = "sample"; output = "output"; path = "{}/{}".format(root, output)The slowest run took 12.44 times longer than the fastest. This could mean that an intermediate result is being cached.1000000 loops, best of 5: 223 ns per loopIn [2]: %timeit root = "sample"; output = "output"; path = root + '/' + outputThe slowest run took 13.82 times longer than the fastest. This could mean that an intermediate result is being cached.10000000 loops, best of 5: 101 ns per loopIn [3]: %timeit root = "sample"; output = "output"; path = "%s/%s" % (root, output)The slowest run took 27.97 times longer than the fastest. This could mean that an intermediate result is being cached.10000000 loops, best of 5: 155 ns per loopIn [4]: %timeit root = "sample"; output = "output"; path = f"{root}/{output}"The slowest run took 19.52 times longer than the fastest. This could mean that an intermediate result is being cached.10000000 loops, best of 5: 77.8 ns per loop


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/637983.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号