标签: pandas dataframe data-analysis
当我将其转换为字符串时,熊猫会打印完整ID列
"RiversideCA_" + str(df_clark_county['ID'])
我只想获取与特定行关联的ID。 Please view picture for more calrity
答案 0 :(得分:0)
您需要将列的类型更改为使用astype的字符串
astype
"RiversideCA_" + df_clark_county['ID'].astype(str)