Commit 2745b4af authored by 张彦钊's avatar 张彦钊

add

parent 754f4f45
......@@ -15,9 +15,11 @@ def exp():
cursor = db.cursor()
cursor.execute(sql)
result = cursor.fetchall()
h_merchant_id = pd.DataFrame(list(result))[0].values.tolist()
df = pd.DataFrame(list(result))[0].values.tolist()
df[0] = df[0].astype('int64')
h_merchant_id = df[0].values.tolist()
print(len(h_merchant_id))
h_merchant_id = [str(float(i)) for i in h_merchant_id]
h_merchant_id = [str(i) for i in h_merchant_id]
print(h_merchant_id[:6])
sql = "select merchant_id from statistic_merchant_rank_factor " \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment