在 micropython 中将列表加入字符串的最有效内存方法是什么?
What is the most memory efficient way to join a list into a string in micropython?
在 MICROPYTHON 中将列表连接到字符串的最节省内存的方法是什么?
MICROPYTHON 中的列表对象没有 'join' 函数,所以我想知道是否有任何节省内存的方法
我看漏了,str class确实有join函数加入列表
例如
",".join(["a","b","c"])
与标准 Python 一样,join
是字符串而非列表的方法。参见:
Python join: why is it string.join(list) instead of list.join(string)?
and/or
在 MICROPYTHON 中将列表连接到字符串的最节省内存的方法是什么?
MICROPYTHON 中的列表对象没有 'join' 函数,所以我想知道是否有任何节省内存的方法
我看漏了,str class确实有join函数加入列表
例如
",".join(["a","b","c"])
与标准 Python 一样,join
是字符串而非列表的方法。参见:
Python join: why is it string.join(list) instead of list.join(string)?
and/or