/images/avatar.png

Project Euler Problem 1

Multiples of 3 and 5 If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. 1 2 3 4 sum = 3 * (1 + 999 / 3) * (999 / 3) / 2 + \ 5

PyQt编程第6章 主窗口

创建一个主窗口 1 2 3 4 5 6 7 8 9 import os import platform import sys from PyQt4.QtCore import * from PyQt4.QtGui import * import helpform import newimagedlg import qrc_resources __version__ = "1.0.0" import的顺序:先Python标准模块,然后第三方模块(比

PyQt编程第5章 对话框

对话框以“智力”分类为:哑巴,标准和聪明,取决于对话框知道程序数据的多少。 对话框以“模式”分类为:模式对话框和无模式对话框。 应用模式对话框一

PyQt编程第4章 GUI编程介绍

一个25行的弹出警告 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 import sys import time from PyQt4.QtCore import * from PyQt4.QtGui import * app = QApplication(sys.argv) try: due = QTime.currentTime() message = "Alert!" if len(sys.argv) < 2: raise ValueError hours, mins =