如何使用Pandas将列添加到现有的Excel文件中?

时间:2018-11-08 20:40:14

标签: python excel pandas

我的文件中有一堆名称和地址,并且我想在其上添加一列名为Barcode的列,并使用generateBareCode()函数进行填充 这是我的代码:

import uuid 
import pandas as pd
def generateBarCode(length):
    return str(uuid.uuid4()).replace('-','')[0:length]

谢谢

0 个答案:

没有答案