import struct,sys from socket import * from contextlib import closing import hashlib,os from functools import partial from prettytable import PrettyTa ...
分类:
数据库 时间:
2020-07-28 00:00:14
阅读次数:
92
经过一段时间的优化,PerfDog4.0全新来袭,先来看看都更新了神马 一,新版功能初探 【新增】新增图表常见操作提示功能 【新增】新增高阶功能,子进程帧率精准测试 【优化】彻底解决部分Android手机无法获取电量和内存等问题 【优化】解决iOS低版本无法获取FPS等问题 【修复】修复一些已知问题 ...
分类:
Web程序 时间:
2020-07-27 23:54:42
阅读次数:
97
1. Using inline to replace #define when there are paramters 2. Using unsigned int only for bit-operations 3. Using fixed-width type int e.g. uint8_t, ...
分类:
其他好文 时间:
2020-07-27 15:42:42
阅读次数:
67
# -*- coding: utf-8 -*- # @Time : 2020/7/26 14:13 # @Author : Breeze # @FileName: 购物车程序.py product_list = [ ("Mac",9000), ("kindle",800), ("tesla",900 ...
分类:
其他好文 时间:
2020-07-27 15:36:49
阅读次数:
63
# -*- coding: utf-8 -*- # @Time : 2020/7/25 22:45 # @Author : Breeze # @FileName: login_while.py user_name = "Breeze" password = "123456789" counter = ...
分类:
其他好文 时间:
2020-07-27 15:35:26
阅读次数:
67
# -*- coding: utf-8 -*- # @Time : 2020/7/25 13:59 # @Author : Breeze num1 = 1 while num1 <= 9: num2 = 1 while num2 <= num1: print("{}*{}={}".format(nu ...
分类:
其他好文 时间:
2020-07-27 15:35:12
阅读次数:
53
# -*- coding: utf-8 -*- # @Time : 2020/7/25 14:09 # @Author : Breeze # @FileName: 字符格式化输出.py name = input("Name:") age = int(input("Age:")) job = inpu ...
分类:
其他好文 时间:
2020-07-27 15:34:29
阅读次数:
60
smart-design-pattern 💥 👿 吼吼!10分钟内快速回顾所有设计模式及应用场景 其实,工作三年以上,精通coding,深知并发编程,熟悉OOP思想,但却因为种种原因! 没有在学习生涯初期就看设计模式的同学!尤其适合看下本项目! 让你在极短的时间内,增加自己的编程内功,从此成为抽 ...
分类:
编程语言 时间:
2020-07-26 23:18:48
阅读次数:
103
使用python的时候经常会遇到文本的编码与解码问题,其中很常见的一种解码错误如题目所示, 1、编码设置 第一行没有设置 # _*_ coding:utf-8 _*_ 2、后面处理数据时没有转码下,如open函数上 处理如下:with open("data.txt",'r',encoding='UT ...
分类:
其他好文 时间:
2020-07-26 22:53:19
阅读次数:
74
session保持存会话 help(session()) 通过help方法查看帮助文档。 使用session登录开源的OPMS系统,搭建OPMS系统,参考:https://www.cnblogs.com/canglongdao/p/12562972.html #coding:utf-8 import ...
分类:
编程语言 时间:
2020-07-26 19:50:47
阅读次数:
91