Python 在 Wiki 标记中添加无序列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 在 Wiki 标记中添加无序列表相关的知识,希望对你有一定的参考价值。
Python编程快速上手实践项目题目,欢迎指证与优化!代码:
#! python3
# bulletPointAdder.py - Adds Wikipedia bullet points to the start
# of each line of text on the clipboard.
import pyperclip
text = pyperclip.paste()
# 从剪贴板粘贴文本
lines = text.split(‘\n‘)
# 使用 split()方法得到一个字符串的列表,以回车符分隔
for i in range(len(lines)):
lines[i] = ‘* ‘ + lines[i]
#遍历 lines 中的每个表项,在每个表项前加*
text = ‘\n‘.join(lines)
#指定字符\n连接序列中元素后生成的新字符串
pyperclip.copy(text)
#复制新的字符串
以上是关于Python 在 Wiki 标记中添加无序列表的主要内容,如果未能解决你的问题,请参考以下文章