代码见:
https://github.com/menzi11/Bull**Generator | | | | | | | import os, re | | import random,readJSON | | | | data = readJSON.读JSON文件("data.json") | | 名人名言 = data["famous"] | | 前面垫话 = data["before"] | | 后面垫话 = data['after'] | | 废话 = data['bosh'] | | | | xx = "学生会退会" | | | | 重复度 = 2 | | | | def 洗牌遍历(列表): | | global 重复度 | | 池 = list(列表) * 重复度 | | while True: | | random.shuffle(池) | | for 元素 in 池: | | yield 元素 | | | | 下一句废话 = 洗牌遍历(废话) | | 下一句名人名言 = 洗牌遍历(名人名言) | | | | def 来点名人名言(): | | global 下一句名人名言 | | xx = next(下一句名人名言) | | xx = xx.replace( "a",random.choice(前面垫话) ) | | xx = xx.replace( "b",random.choice(后面垫话) ) | | return xx | | | | def 另起一段(): | | xx = ". " | | xx += "\r\n" | | xx += " " | | return xx | | | | if __name__ == "__main__": | | xx = input("请输入文章主题:") | | for x in xx: | | tmp = str() | | while ( len(tmp) < 6000 ) : | | 分支 = random.randint(0,100) | | if 分支 < 5: | | tmp += 另起一段() | | elif 分支 < 20 : | | tmp += 来点名人名言() | | else: | | tmp += next(下一句废话) | | tmp = tmp.replace("x",xx) | | print(tmp)COPY |
|