摘要:
Python 简单使用QMediaPlayer,QSoundEffect,QAudioOutput from PyQt5 import QtCore, QtMultimedia, QtGuiimport PyQt5(1)适合于mp4,mp3 if __name__=="__main__": app 阅读全文
摘要:
Python classmethod 修饰符简单使用 class A(object): value = 1 def func1(self): print('func1') @classmethod def func2(cls): print('func2') print(cls.value) cls 阅读全文
摘要:
Python获取当前时间及格式化import time # 打印时间戳print(time.time())# 格式化时间戳为本地的时间print(time.localtime(time.time()))# 优化格式化化版本print(time.strftime('%Y-%m-%d %H:%M:%S' 阅读全文