最新 最热

python核心编程(office编程)

1、组件包:python extensions for windows 2、excel文档操作示例://xl的语句需要被替换xl = win32com.client.Dispatch('%s.Application' % app)。动态调用的语句。图片中是静态调用,需要另外设置makepy。...

2022-05-14
1

python 给图片打LOGO 脚本

SQUARE_FIT_SIZE = 300 LOGO_FILENAME = 'catlogo.png'

2022-05-13
1

[译]《iOS Human Interface Guidelines》——Apple Pay

Aplle Pay是iOS设备上一种易用的、安全的、私有的支付方式。当使用app购买物理商品和服务时,人们可以使用Apple Pay来快速、安全地提供支付对象、运送方式和支付信息。...

2022-05-13
1

并发和并行的区别

并发(concurrency):指在同一时刻只能有一条指令执行,但多个进程指令被快速的轮换执行,使得在宏观上具有多个进程同时执行的效果,但在微观上并不是同时执行的,只是把时间分成若干段,使多个进程快速交替的执行。...

2022-05-13
1

python tkinter pil 缩略图 脚本

""" display all images in a directory as thumbnail image buttons that display the full image when clicked; requires PIL for JPEGs and thumbnail image creatio...

2022-05-13
1

python tkinter 时间相关函数

class Alarm(Frame): def init(self, msecs=1000): # default = 1 second Frame.init(self) self.msecs = msecs self.pack() stopper = Button(self, te...

2022-05-13
1

python cgi

os.path.abspath(path1) 绝对路径 os.path.abspath(".") isinstance

2022-05-13
1

CSS样式(二)

background-repeat:no-repeat; 不平铺

2022-05-12
1