前言
本文给大家分享的是如何通过利用Python实现鲁迅名言查询系统,废话不多直接开整~
开发工具
Python版本: 3.6
相关模块:
PyQt5模块
fuzzywuzzy模块
环境搭建
安装Python并添加到环境变量,pip安装需要的相关模块即可。
文中实战教程,评论留言获取。
代码实现
简单的GUI
class GUI(QWidget):
def __init__(self, parent=None):
super().__init__()
self.setWindowTitle('鲁迅名言查询-公众号:Python工程狮')
self.setWindowIcon(QIcon('data/icon.png'))
self.label1 = QLabel('句子:')
self.line_edit = QLineEdit()
self.label2 = QLabel('查询结果:')
self.text = QTextEdit()
self.button = QPushButton()
self.button.setText('查询')
self.cmb = QComboBox()
self.cmb.setStyle(QStyleFactory.create('Fusion'))
self.cmb.addItem