ArcGIS python生成uuid(guid)

with arcpy.da.UpdateCursor(in_table=in_table,field_names=in_field,) as cursor:
    for row in cursor:
        guid=str(uuid.uuid1()).upper() if is_upper else str(uuid.uuid1())
        row[0]=guid if have_link else guid.replace('-','')
        cursor.updateRow(row)
    del row,cursor
posted @ 2020-03-10 16:38  yzhyingcool  阅读(1480)  评论(0编辑  收藏  举报