标签: python excel pandas
我的文件中有一堆名称和地址,并且我想在其上添加一列名为Barcode的列,并使用generateBareCode()函数进行填充 这是我的代码:
import uuid import pandas as pd def generateBarCode(length): return str(uuid.uuid4()).replace('-','')[0:length]
谢谢