# object型に変換
df['id'] = df['id'].astype(object)

# int型に変換
df['id'] = df['id'].astype(int)

# float型に変換
df['id'] = df['id'].astype(float)
おすすめの記事