该文被密码保护。 阅读全文
摘要:
一、流的分类 输入流:读进程序叫入(read) 输出流:写出程序叫出(write) 字节流:数据传输中以字节为最小传输单位,类名以InputStream或OutputStream结尾。 字符流:以字符为最小传输单位,类名以Reader或Writer结尾。 节点流:也称为底层流(直接对应数据的具体来源 阅读全文
摘要:
String类 string中的常用方法 matches(String regex) replace(char oldChar,char newChar) replaceAll(String regex,String replace) split(String regex) substring(in 阅读全文
摘要:
文件模式modo 文件方法method 关闭文件 文件属性property 实例演示 文件操作:打开-操作-关闭 模式mode: 文本 r只读(默认) w只写(创建新文件,存在则删除,不存在则新建) a追加(不存在则创建,存在则追加) “+”表示可以同时读写某个文件 r+读写(追加写,常用此项),w 阅读全文
摘要:
去重 关系测试 基本操作 阅读全文
摘要:
__author__ = "KuanKuan" info = {'teacher1': '苍井空', 'teacher2': '京香', 'teacher3': '波多野结衣', 'teacher4': '小泽玛利亚', 'teacher5': '上原瑞惠', 'teacher6': '樱井莉亚', 'teacher7': ... 阅读全文
摘要:
字典特性: dict无序 key唯一,天生去重 创建字典: way1:小心列表坑 way2: 字典无序输出 查询 修改 增加 删除 遍历 清空 阅读全文
摘要:
增 append() insert(index,obj) #可以向指定位置添加 1 __author__ = "KuanKuan" 2 list = [] 3 list.append("JankinYu") 4 list.insert(0,"kali") 5 print(list)#输出结果#['k 阅读全文
摘要:
大小写转换 字符串判断 输出显示 查找替换 阅读全文