Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在数据文件中使用了很多元组作为记录键。当我从文本加载表格时,元组是数据框中的字符串。
我现在转换为元组,使用:
df['KEY'] = df['KEY'].map(lambda x: eval(x))
是否可以自动获得字符串评估?
卢克
你可以用它converters={'KEY': eval}来让事情变得更简单。也可以在内部添加一些更优化的版本。
converters={'KEY': eval}