import pandas as pd # 创建一个DataFrame df = pd.DataFrame({'int_col': [1, 2, 3, 4]}) # 使用astype()方法将整数转换为字符串 df['str_col'] = df['int_col'].astype(str) print(df) 输出结果如下: int_col str_col 0 1 1 1 2 2 2 3 3 3 4 4 可以看到,整数列已经成功转换...