我正在尝试编写将 CSV 转换为 ARFF 的代码。我将每个之间的值导入","
到数组的一个单元格中,例如一个实例,例如:
Monday,176,49,203,27,77,38,Second
转换为:
['Monday', '176', '49', '203', '27', '77', '38', 'Second']
问题是 Python 将每个单元格识别为字符串,您可以在示例中看到 Python 识别的类型:
[<type 'str'>, <type 'str'>, <type 'str'>, <type 'str'>, <type 'str'>, <type 'str'>, <type 'str'>, <type 'str'>]
我正在寻找一种区分名义属性和数字属性的方法?