如何在循环的开头和结尾添加两个字符串而不循环它们
代码:
import faker
import json
from faker import Faker
import random
from random import randint
ids= (1, 2)
fake = Faker('en_US')
for ind in ids:
cont = []
for idx in range(10):
sms = {
"pid": "ABs-1cd",
"body": fake.text(),
"mime": fake.ean(),
"hashed": fake.ean(),
"celus": fake.ean(),
"ids": ind,
"dev": "465p"
}
cont.append(sms)
f_name = '{}.json'.format(ind)
with open(f_name, 'w') as fp:
json.dump(cont, fp, indent=4)
print('saved {}'.format(f_name))
如何首先添加
('{"first":')
最后是
('{",user_id":ids}')
无需在循环中循环这两个字符串。
答案 0 :(得分:1)
使用first
和user_ids
键制作一个整体字典,并使用该字典将cont
列表保存到第一键,并将ind
保存到user_ids键
import faker
import json
from faker import Faker
import random
from random import randint
ids= (1, 2)
fake = Faker('en_US')
for ind in ids:
cont = []
#Overall dictionary with first and user_ids
dct = {}
for idx in range(10):
sms = {
"pid": "ABs-1cd",
"body": fake.text(),
"mime": fake.ean(),
"hashed": fake.ean(),
"celus": fake.ean(),
"ids": ind,
"dev": "465p"
}
cont.append(sms)
#Use a dictionary to save cont list to first key, and ind to user_ids key
dct['first'] = cont
dct['user_ids'] = ind
print(dct)
f_name = '{}.json'.format(ind)
with open(f_name, 'w') as fp:
#Save the dictionary
json.dump(dct, fp, indent=4)
print('saved {}'.format(f_name))
输出将为
{'first': [{'pid': 'ABs-1cd', 'body': 'Once bad interest stage oil exactly traditional. Imagine white develop direction dinner. Person against heart continue prepare black company.', 'mime': '7947418095538', 'hashed': '0315645882226', 'celus': '3862931929389', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Picture much ahead. West maintain level discuss history.\nTen especially state security account wall. After item away successful benefit character provide. Firm recent article ground side answer.', 'mime': '9553306262050', 'hashed': '6578140863174', 'celus': '3756979326630', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Specific remember west quite. Inside because value head trade of. Wish dog manage live tree must.\nSpecific military society answer face special those.', 'mime': '0055821161850', 'hashed': '7914393859028', 'celus': '9619309879708', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Message of would. Clear alone weight miss. Side article blood beyond significant. See must road on.', 'mime': '3474146505502', 'hashed': '8901606345378', 'celus': '8522638862987', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Require own spend crime voice somebody image. Sure call fight see how whether doctor.', 'mime': '7683263834822', 'hashed': '6466439701194', 'celus': '6032565190791', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Off daughter blue ok across let more. Ever present military treat college enter social. Size catch idea one federal.', 'mime': '1004798039012', 'hashed': '4731085441117', 'celus': '1792587257319', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Past executive some history better space approach. Human middle democratic situation person choice case American.\nCountry source be property trade something. Skill former the him between around.', 'mime': '4421030408752', 'hashed': '0184291213773', 'celus': '3877047785583', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Easy instead however arm central. Out research store mother can full many school. Station realize involve design in.', 'mime': '0852490359201', 'hashed': '8981337920679', 'celus': '8574611443843', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Away audience radio seven mind city remain daughter. Father American good stand could next surface. Sport technology partner safe change structure unit.', 'mime': '4554350820703', 'hashed': '4601898139443', 'celus': '4826739928844', 'ids': 1, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Political need sound share black go team. Example including per those election.', 'mime': '1768507432319', 'hashed': '5319452189382', 'celus': '3823657848668', 'ids': 1, 'dev': '465p'}], 'user_ids': 1}
{'first': [{'pid': 'ABs-1cd', 'body': 'Partner time authority both idea. Size interview article when maybe. Different significant voice meeting half record billion.', 'mime': '3892017523743', 'hashed': '3793686452115', 'celus': '8550254648074', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Challenge scientist view why. Design dark modern hot simple strong lead.\nCause media issue past audience. Wish consider employee value. Food market change.', 'mime': '5566939653908', 'hashed': '7706344892617', 'celus': '1844068734106', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Value many tell authority wide general wind final. Catch meeting himself possible pick. Trip partner ago development record.', 'mime': '6132669843842', 'hashed': '5130684365197', 'celus': '3915001947292', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'International help film war around also upon. Detail if start also help. Far former future begin training.\nHour part class let key. Under may interview call. Soon protect area region.', 'mime': '3034812523072', 'hashed': '0489612500793', 'celus': '8110097295615', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Commercial soon wide up TV.\nBody certainly successful Congress power nice. Contain career until travel as teach minute. North alone view last.', 'mime': '3594193711708', 'hashed': '4214397625524', 'celus': '6291818077580', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Hand along give his only wait. Away music treatment star about stock visit computer.\nNeed close nothing. Where system none picture here first.', 'mime': '3518951867391', 'hashed': '0458464950148', 'celus': '8019056161117', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'General training write head daughter marriage address. Popular report may Democrat. Outside one in particular ask need prepare.\nToward prepare industry human street baby. Nearly person modern.', 'mime': '0948736144820', 'hashed': '1757081919002', 'celus': '5042627963134', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Fall better perform will data not country born. Analysis trip scene bill food which. Staff have during his although nation short country.', 'mime': '5847396332545', 'hashed': '8374445228001', 'celus': '3080160056045', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Material raise official entire type notice. Husband offer tax ok meeting.\nProduction reduce year. Others go laugh develop.', 'mime': '2992666835356', 'hashed': '1120354763204', 'celus': '4941311308101', 'ids': 2, 'dev': '465p'}, {'pid': 'ABs-1cd', 'body': 'Or model course face them painting for. Control meeting me rate reduce none election leader.\nOffice writer win.', 'mime': '3568580264870', 'hashed': '2614207604497', 'celus': '9925698365792', 'ids': 2, 'dev': '465p'}], 'user_ids': 2}