#原始的二維表資料集
jsonobj=
#新增模擬的資料
for i in range(1001,1004):
for j in range(1,34):
"bureau_id
":i,'
bureau_name
':'第
'+str(i)+"
中",'
person_id
':10000+j})
#結構化的資料集
persondict={}
for obj in
jsonobj:
if'bureau_
'+str(obj['
bureau_id
']) not
inpersondict:
persondict[
'bureau_
'+str(obj['
bureau_id
'])]=
if'personids
'not
in persondict['
bureau_
' + str(obj['
bureau_id
'])]:
persondict[
'bureau_
' + str(obj['
bureau_id
'])]['
personids
']= persondict[
'bureau_
' + str(obj['
bureau_id
'])]['
personids
person_id'])
batchsize=10
for c in
persondict:
#群組id
group_id=c
#群組名
group_name=persondict[c]['
bureau_name']
#有哪些人員
count=1
while len(persondict[c]['
personids
'])>batchsize:
print('
第'+str(count)+'
輪提交的資料:
'+str(persondict[c]['
personids
'][:batchsize]))
del persondict[c]['
personids
'][:batchsize]
count+=1
print('
最後一輪提交的資料:
' + str(persondict[c]['
personids
']))
print('
***********************************=
')
Python 資料型別轉換
函式 描述int x base 將x轉換為乙個整數 long x base 將x轉換為乙個長整數 float x 將x轉換到乙個浮點數 complex real imag 建立乙個複數 str x 將物件 x 轉換為字串 repr x 將物件 x 轉換為表示式字串 eval str 用來計算在字串中...
python 資料型別轉換
在python的開發過程中,難免會遇到型別轉換,這裡給出常見的型別轉換demo int x base 將x轉換為乙個整數 long x base 將x轉換為乙個長整數 float x 將x轉換到乙個浮點數 complex real imag 建立乙個複數 str x 將物件 x 轉換為字串 repr...
Python資料型別轉換
python提供的基本資料型別主要有 布林型別 整型 浮點型 字串 列表 元組 集合 字典 日期等等 函式 描述 type x x的資料型別 int x base 將x轉換為乙個整數 long x base 將x轉換為乙個長整數 float x 將x轉換到乙個浮點數 complex real ima...