博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读书人的干的事能算抄袭么……
阅读量:5797 次
发布时间:2019-06-18

本文共 1491 字,大约阅读时间需要 4 分钟。


title: 读书人的干的事能算抄袭么…… tags:

  • python
  • 古风
  • 写诗 categories: python date: 2017-07-25 18:18:53

抄袭了 同学的代码,发觉还是挺有意思的 O(∩_∩)O

直接上代码

# coding=utf-8    from time import sleep    from random import choice    from random import randint    import sys    defaultencoding = 'utf-8'    if sys.getdefaultencoding() != defaultencoding:        reload(sys)        sys.setdefaultencoding(defaultencoding)         two_chars_words = "朱砂 天下 杀伐 人家 韶华 风华 繁华 血染 墨染 白衣 \    素衣 嫁衣 倾城 孤城 空城 旧城 旧人 伊人 心疼 春风 古琴 无情 迷离 奈何 \    断弦 焚尽 散乱 陌路 乱世 笑靥 浅笑 明眸 轻叹 烟火 一生 三生 浮生 桃花 \    梨花 落花 烟花 离殇 情殇 爱殇 剑殇 灼伤 仓皇 匆忙 陌上 清商 焚香 墨香 \    微凉 断肠 痴狂 凄凉 黄梁 未央 成双 无恙 虚妄 凝霜 洛阳 长安 江南 忘川 \    千年 纸伞 烟雨 回眸 公子 红尘 红颜 红衣 红豆 红线 青丝 青史 青冢 白发 \    白首 白骨 黄土 黄泉 碧落 紫陌".split(" ")         four_chars_words = "情深缘浅 情深不寿 莫失莫忘 阴阳相隔 如花美眷 \    似水流年 眉目如画 曲终人散 繁华落尽 不诉离殇 一世长安".split(" ")         sentence_model = "xx,xx,xx了xx。 xxxx,xxxx,不过是一场xxxx。 \    你说xxxx,我说xxxx,最后不过xxxx。 xx,xx,许我一场xxxx。 \    一x一x一xx,半x半x半xx。 你说xxxxxxxx,后来xxxxxxxx。 \    xxxx,xxxx,终不敌xxxx。".split(" ")              def get_sentence():        model = choice(sentence_model)        while "xxxx" in model:            model = model.replace("xxxx", choice(four_chars_words), 1)        while "xx" in model:            model = model.replace("xx", choice(two_chars_words), 1)        while "x" in model:            model = model.replace(                "x", choice(two_chars_words).decode("utf-8")[randint(0, 1)])        print(model)         while True:        get_sentence()        sleep(1)复制代码

我可以写小说了………………

转载地址:http://zjsfx.baihongyu.com/

你可能感兴趣的文章
MariaDB安装、Apache安装
查看>>
DJango的安装和基本使用
查看>>
python的继承
查看>>
问:如何在SBO报表设计器中对LastName+FirstName进行条件查询
查看>>
CentOS时间同步
查看>>
SQL数据库高级查询命令(5)
查看>>
sql迁移到oracle后无法查找到表
查看>>
在 ML2 中配置 VXLAN - 每天5分钟玩转 OpenStack(110)
查看>>
【移动开发】WIFI热点通信(二)
查看>>
如何让Android UI使用更快更高效
查看>>
构建高可用服务器之三 Keepalive冗余Mysql
查看>>
[C# 开发技巧系列]C#如何实现图片查看器
查看>>
文件服务之powershell应用
查看>>
CSS选择器、优先级与匹配原理
查看>>
Eclipse使用技巧 - 自定义JavaDoc注解和代码模版,提升开发效率和规范性
查看>>
WinForm 分屏 [ WinForm | Panel | 视频监控分屏 ]
查看>>
用GDB 调试Java程序
查看>>
php数据库之mysql connect create insert select
查看>>
Linux文本处理三剑客之grep
查看>>
Java基础-学习使用Annotation注解对象
查看>>