Import Random stencil = '{n40} is {v0}{n41}, {v1} industry {n30}. {n42} is {v2}{n20}{n43} and reaches {n33} by {n31} and {n32}. '\ '{n44} is in {n45} with {n21} form {n46}. {n47}{n48} is used as {n22} to enable the product, and {n49} is used as the evaluation standard of {n23}' \ '. The bright spot is {n24}, the advantage is {n25}. {v3} whole {n410}, {v4}{n26}{v5}{N411}. {n34} is {n35}' \ 'meets the {n36} standard. ' num = {'v': 6, 'n2': 7, 'n3': 7, 'n4': 12 v =} # 2 words verbs' Mr Abhisit, checking, fu can, blessing, precipitation, reversed transmission, fall to the ground, series, synergy, feedback, compatible, packaging, restructuring, performance, '\' response, quantitative, power, layout, linkage, segmentation, comb, output, acceleration, to build and create, support, decoupling, aggregation, fusion, '\ 'Integrate, mark, align, focus, grab, disassemble, pull through, abstract, fumble, extract, break through, penetrate, migrate, distribute, layer,' \ 'encapsulate, radiate, surround, reuse, penetrate, expand, exploit, give to, split, break through' 'Funnel, middle stage, closed loop, play, bond, matrix, stimulus, scale, scene, dimension, pattern, form, ecology, speech,' \ 'system, cognition, gameplay, somatosensory, perception, tonality, mind, campaign, synergy, track, gene, factor, model, carrier, lateral,' \ ' 'channel, complement, link, pilot '. Split (', ') # n3 =' new ecology, perception, granularity, methodology, combination, tipping point, point, line, surface, refinement, differentiation, platformization, structuralization, '\ 'influence, coupling, ease of use, convenience, consistency, end-to-end, short and quick, moat '.split(', ') # n4 =' bottom logic, top design, delivered value, life cycle, value transformation, enhanced cognition, resource tilt, perfect logic, pull away through, '\ 'Reuse strategy, business model, quick response, Qualitative and quantitative, critical path, decentralization, Result-oriented, Vertical domain, attribution analysis,' \ 'Experience measurement, information barrier '.split(', ') v_list = random.sample(v, num['v']) n2_list = random.sample(n2, num['n2']) n3_list = random.sample(n3, num['n3']) n4_list = random.sample(n4, num['n4']) lists = {'v': v_list, 'n2': n2_list, 'n3': n3_list, 'n4': n4_list} dic = {} for current_type in ['v', 'n2', 'n3', 'n4']: current_list = lists[current_type] for i in range(0, len(current_list)): dic[current_type + str(i)] = current_list[i] result = stencil.format(**dic) print(result)Copy the code

Output results: The life cycle is the tipping point of rapid response and enabling industry. Business model is the segmentation of the carrier experience measurement, through platformization and convenience to achieve short flat fast. To improve logic is to strengthen cognition by adopting gameplay method at the bottom level of logic. Reuse method resource tilt as a method to empower products, information barrier as a system of evaluation criteria. The bright spot is dimension, the advantage is closed loop. Focus on the whole top-level design, scale up and migrate verticals. Granularity is a combination of blows to reach the standard of influence.

Reprinted from zhihu www.zhihu.com/question/45…