连接 Python 库的方式与标准过程类似,无论是 C /Java/其他:
import sys import openpyxl from PyQt5 import QtWidgets from PyQt5.Qt import QTableWidgetItem from PyQt5.QtWidgets import ( QApplication, QMainWindow, QPushButton, QVBoxLayout, QWidget, QTableWidget, )
由于缺乏Python调试器,很难验证构建的正确性和库的存在。带有操作系统提示的命令行 (CLI) 非常有用。
def appication(): app=QApplication(sys.argv) window = QMainWindow() window.setWindowTitle("Smart home") window.setGeometry(300, 250, 300, 200) window.show() sys.exit(app.exec_()) if __name__=="__main__": appication()
.py 文件扩展名出现在当您在终端中将文件作为命令运行时,构建器从项目的位置路径中提取:
lass MainWindow(QMainWindow): def __init__(self): super().__init__() self.setMinimumWidth(1200) self.setMinimumHeight(600) layout = QVBoxLayout() self.table = QTableWidget(self) self.table.setRowCount(4) self.table.setColumnCount(4) layout.addWidget(self.table) btn = QPushButton("Download") btn.clicked.connect(self.btn_click) layout.addWidget(btn) widget = QWidget() widget.setLayout(layout) self.setCentralWidget(widget) def btn_click(self): wb = load_workbook('./123.xlsx') # Get sheet names sheet = wb['Sheet1'] print(sheet.cell(row=2, column=1).value) for row in range(1, 5): for column in range(1, 5): item = QTableWidgetItem() item.setText(str(sheet.cell(row=row, column=column).value)) self.table.setItem(row-1, column-1, item) app = QApplication(sys.argv) window = MainWindow() window.show() app.exec()
我不太相信 Python 环境的图形 shell;通常,它们使与文件的交互变得复杂。正确安装带有约定的库可以更轻松地与代码交互。级别越轻、越原始越好。进化告诉现实——而不是相反。
以上是.py 扩展约定的详细内容。更多信息请关注PHP中文网其他相关文章!