鱼C论坛

 找回密码
 立即注册
查看: 2823|回复: 2

[作品展示] 精华3.0

[复制链接]
发表于 2022-8-23 21:53:20 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
利用了pyperclip库
import pyperclip


def scan(string):
    if len(string) > 30:
        i = 0
        for ch in string:
            if ch == '。':
                return scan(string[0: i]) + scan(string[i + 1: len(string) - 1])
            i += 1
        print('太长了')
        return ''
    return_string = ''
    is_chinese = False
    for ch in string:
        if '\u4e00' <= ch <= '\u9fff':
            if is_chinese:
                return_string += ' '
            return_string += ch
            is_chinese = False
        elif ch == ',':
            return_string += ch
            is_chinese = False
        elif ch == '。':
            is_chinese = False
        elif is_chinese:
            return_string += ch
        else:
            return_string += ' ' + ch
            is_chinese = True
    if string[-1] == "%":
        pyperclip.copy(return_string + ' 。\n')
    elif string[-1] == "!" or string[-1] == "?" or string[-1] == "." or string[-1] == ":":
        pyperclip.copy(return_string)
    pyperclip.copy(return_string + '。\n')


def first_title(string):
    pyperclip.copy('
[b]' + string + '[/b]
') def second_title(string):     pyperclip.copy('[b]' + string + '[/b]') def third_title(string):     pyperclip.copy('' + string + '')


输入完 scan(),*_title() 就可以直接到帖子里 ctrl + v 了。

精华2.0
https://fishc.com.cn/thread-216900-1-1.html
(出处: 鱼C论坛)

评分

参与人数 1荣誉 +5 鱼币 +5 贡献 +3 收起 理由
python爱好者. + 5 + 5 + 3 鱼C有你更精彩^_^

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-8-24 04:51:44 | 显示全部楼层
建议以后加上 图形界面 与 爬虫(直接在IDLE里远程控制fishc.com网站)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-8-24 08:03:29 | 显示全部楼层
python爱好者. 发表于 2022-8-24 04:51
建议以后加上 图形界面 与 爬虫(直接在IDLE里远程控制fishc.com网站)

知道,正在学requests
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-16 23:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表