gpt4 book ai didi

list - 如何将列表写入文件?

转载 作者:行者123 更新时间:2023-12-04 22:37:43 25 4
gpt4 key购买 nike

我在尝试:

import System.IO
saveArr = do
outh <- openFile "test.txt" WriteMode
hPutStrLn outh [1,2,3]
hClose outh

但它不起作用......输出:

No instance for (Num Char) arising from the literal `1'



编辑
好的 hPrint使用整数但数组中的浮点数呢? [1.0, 2.0, 3.0] ?

最佳答案

hPutStrLn只能打印字符串。也许你想要 hPrint ?

hPrint outh [1,2,3]

关于list - 如何将列表写入文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2895748/

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