熊猫打印全列值

时间:2020-09-11 11:50:18

标签: pandas dataframe data-analysis

当我将其转换为字符串时,熊猫会打印完整ID列

"RiversideCA_" + str(df_clark_county['ID'])

我只想获取与特定行关联的ID。 Please view picture for more calrity

1 个答案:

答案 0 :(得分:0)

您需要将列的类型更改为使用astype的字符串

"RiversideCA_" + df_clark_county['ID'].astype(str)