gpt4 book ai didi

python - 将大量 float 转换为字符串列表的快速方法

转载 作者:行者123 更新时间:2023-12-01 05:32:51 26 4
gpt4 key购买 nike

我有一个非常大的 float 列表,我需要将其转换为字符串列表。我正在寻找一种快速的方法来做到这一点。这种简单的方法需要花费太多时间。做到这一点的最佳方法是什么。

最佳答案

import time
def main():
d = [1.0]*10**7
st = time.time()
e = map(str, d)
print time.time() - st

>>> main()
3.4690001010

太多了?如果不构建列表:

from itertools import imap
def main():
d = [1.0]*10**7
id = iter(d)
st = time.time()
e = imap(str,id)
for l in e:
pass
print time.time() - st

>>> main()
1.38447939781

关于python - 将大量 float 转换为字符串列表的快速方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19801909/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com