标签: python pandas dataframe
我需要在数据框中添加一个名为 Id 的列,其中包含作者ID的名称,例如Author-Id-001,Author-Id-002 ...等,直到150。
我该怎么做?
先谢谢了。 something like this(instead of Test-Document-00* I need Author-Id-00*
答案 0 :(得分:0)
我认为需要:
df['Id'] = ['Author-Id-{:03d}'.format(x) for x in range(1, 151)]