Python基础: 字符串和编码: 在计算机内存中,统一使用Unicode编码,当需要保存到硬盘或者需要传输的时候,就转换为UTF-8编码。 用记事本编辑的时候,从文件读取的UTF-8字符被转换为Unicode字符到内存里,编辑完成后,保存的时候再把Unicode转换为UTF-8保存到文件 在最新的 ...
分类:
编程语言 时间:
2018-05-15 16:01:18
阅读次数:
228
desinged to be clean and easy to be read .yml or .yaml 2 example person: name: mike occupation: programmer age: 29 gpa: !!str 3.5 # convert to string ...
分类:
其他好文 时间:
2018-05-15 00:22:51
阅读次数:
190
rf+sublime框架测试接口: python一开始遇到 输出返回值问题,打不出来; def GetBaseInfo(self, RecordRelatedNumber): ret=self.comlib.GetBaseInfo( RecordRelatedNumber) return ret # ...
分类:
编程语言 时间:
2018-05-08 19:37:45
阅读次数:
448
Java AVL、BST编程作业代写、代做JDK实验1 IntroductionNeeding a way to manage all your PlayStation friends, you decide to build a backendsystem for adding, removing ...
分类:
编程语言 时间:
2018-04-30 23:32:37
阅读次数:
279
问题:使用存储过程有什么优缺点?什么时候使用存储过程?为什么使用存储过程? 1、存储过程有两种参数类型,输入(默认input),输出(output) 2、存储过程一个批执行——批(go)在Sql中起一个隔断作用 3、分页存储过程的使用: ( 1、变量的声明 ) ...
分类:
其他好文 时间:
2018-04-29 01:16:38
阅读次数:
189
#新建学生表 drop table if exists student; create table student( sno varchar(20) not null primary key comment '学号', sname varchar(20) not null comment '学生姓名 ...
分类:
数据库 时间:
2018-04-26 23:27:53
阅读次数:
233
<不支持str实例和int实例之间的对比 birth是str类型 2000是int类型 所以无法对比,报错 修改为: ...
分类:
其他好文 时间:
2018-04-25 20:03:28
阅读次数:
1105
numpy 的使用¶ numpy.array基础¶ In [1]: import numpy In [3]: numpy.__version__ #查询当前numpy的版本 Out[3]: '1.14.0' In [4]: import numpy as np In [5]: np.__versio ...
分类:
编程语言 时间:
2018-04-24 23:22:05
阅读次数:
337
说明:student是要创建的表名 主键:primary key 注释:comment 1,创建表: create table student( sno varchar(20) not null primary key comment '学号', sname varchar(20) not null ...
分类:
数据库 时间:
2018-04-21 16:19:03
阅读次数:
221
re模块 常用正则表达式符号 '.' 默认匹配除\n之外的任意一个字符,若指定flag DOTALL,则匹配任意字符,包括换行 '^' 匹配字符开头,若指定flags MULTILINE,这种也可以匹配上(r"^a","\nabc\neee",flags=re.MULTILINE) '$' 匹配字 ...
分类:
其他好文 时间:
2018-04-16 18:38:49
阅读次数:
160