aaron0919 发表于 2022-8-23 21:53:20

精华3.0

利用了pyperclip库

import pyperclip


def scan(string):
    if len(string) > 30:
      i = 0
      for ch in string:
            if ch == '。':
                return scan(string) + scan(string)
            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('' + string + '')


def second_title(string):
    pyperclip.copy('' + string + '')


def third_title(string):
    pyperclip.copy('' + string + '')



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

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

python爱好者. 发表于 2022-8-24 04:51:44

建议以后加上 图形界面 与 爬虫(直接在IDLE里远程控制fishc.com网站)

aaron0919 发表于 2022-8-24 08:03:29

python爱好者. 发表于 2022-8-24 04:51
建议以后加上 图形界面 与 爬虫(直接在IDLE里远程控制fishc.com网站)

知道,正在学requests
页: [1]
查看完整版本: 精华3.0