Time and Space Complexity of list to str conversion in Python
问题 Trying to find out what is the time complexity of casting to string str([1,2,6,...,3,6]) Pretty sure it's O(1) Not sure how to verify. Edit: about space complexity, That should not be linear to list size, thinking O(1) because string has max size. 回答1: It's linear, because bigger lists need more time and memory to convert. Graph generated using perfplot. Code, for reference: import numpy as np import perfplot perfplot.show( setup=lambda n: np.random.choice(100, n).tolist(), kernels=[ lambda