码迷,mamicode.com
首页 >  
搜索关键字:zen coding    ( 13130个结果
python版本的mysql text resultset row协议代码实现
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探索,支持用户自建web云
经过一段时间的优化,PerfDog4.0全新来袭,先来看看都更新了神马 一,新版功能初探 【新增】新增图表常见操作提示功能 【新增】新增高阶功能,子进程帧率精准测试 【优化】彻底解决部分Android手机无法获取电量和内存等问题 【优化】解决iOS低版本无法获取FPS等问题 【修复】修复一些已知问题 ...
分类:Web程序   时间:2020-07-27 23:54:42    阅读次数:97
Embedded C Coding Rules
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
login_while
# -*- 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
JAVA OOP 编程-常用设计模式
smart-design-pattern 💥 👿 吼吼!10分钟内快速回顾所有设计模式及应用场景 其实,工作三年以上,精通coding,深知并发编程,熟悉OOP思想,但却因为种种原因! 没有在学习生涯初期就看设计模式的同学!尤其适合看下本项目! 让你在极短的时间内,增加自己的编程内功,从此成为抽 ...
分类:编程语言   时间:2020-07-26 23:18:48    阅读次数:103
【E-06】UnicodeDecodeError: 'gbk' codec can't decode byte 0x93 in position 2740: illegal multibyte sequence
使用python的时候经常会遇到文本的编码与解码问题,其中很常见的一种解码错误如题目所示, 1、编码设置 第一行没有设置 # _*_ coding:utf-8 _*_ 2、后面处理数据时没有转码下,如open函数上 处理如下:with open("data.txt",'r',encoding='UT ...
分类:其他好文   时间:2020-07-26 22:53:19    阅读次数:74
Python接口自动化(六) session关联接口
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
13130条   上一页 1 ... 35 36 37 38 39 ... 1313 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!