摘要:
linux: 修改 ~/.pip/pip.conf (没有就创建一个), 内容如下: [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple windows: 直接在user目录中创建一个pip目录,如:C:\Users\xx\pi 阅读全文
摘要:
1、安装Qt-Creator, Qt-Creator自带了qt-designer 2、安装qt5-default,qttools5-dev-tools 阅读全文
摘要:
1. 获取操作tag 获取操作tag的接种方式: soup.find_all(name=None, attrs={}, recursive=True, text=None, limit=None, **kwargs),返回符合条件的所有标签,查找不到则返回[],可以传递标签名,标签属性,关键字参数, 阅读全文
摘要:
pyqt5信号要定义为类属性 #!/usr/bin/python3 # -*- coding: utf-8 -*- from PyQt5.Qt import * import sys class Win(QWidget): my_singal = pyqtSignal(str) def __init 阅读全文
摘要:
import sys from PyQt5.QtCore import Qt from PyQt5.QtWidgets import * from plot_pyqt import PlotCanvas class App(QMainWindow): def __init__(self): supe 阅读全文
摘要:
numpy中有一些常用的用来产生随机数的函数,randn()和rand()就属于这其中。 numpy.random.randn(d0, d1, …, dn)是从标准正态分布中返回一个或多个样本值。 numpy.random.rand(d0, d1, …, dn)的随机样本位于[0, 1)之间。 阅读全文
摘要:
import sys from PyQt5.QtWidgets import * from PyQt5.QtGui import * class Example(QMainWindow): def __init__(self): super().__init__() self.initUI() de 阅读全文
摘要:
结果显示: UTC (Universal Coordinated time) time 输出结果: daysTo()计算从一个日子到另一日子之间间隔的天数 输出结果: 阅读全文
摘要:
import sys from PyQt5.QtWidgets import (QWidget, QToolTip, QPushButton, QApplication) from PyQt5.QtGui import QFont class Example(QWidget): def __init__(self): super().__init__() self.initUI() def ini 阅读全文
摘要:
The QtCore module contains the core non-GUI functionality. This module is used for working with time, files and directories, various data types, strea 阅读全文