Commit 7c29c48a by 刘豪

update

parent 595562b0
Showing with 2 additions and 1 deletions
......@@ -60,7 +60,8 @@ class TsCrm:
def handle_data(self):
num = 100
data = [self.data[i:i + num] for i in range(0, len(self.data), num)]
for row in data:
for index, row in enumerate(data):
print("遍历第{}组".format(index))
outter_uids = []
str_outter_uids_list = []
for i in row:
......
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 sign in to comment