一、读操作只读模式'r'f = open('a.txt', 'r', encoding='utf-8')''''a.txt'表示文件路径,‘r’表示读模式,不写默认为rt模式‘rtext’,f为变量,open('a.txt', 'r')表示在操作系统上打开的文件,python解释器的回收功能会回收f ...
分类:
编程语言 时间:
2020-07-27 17:38:11
阅读次数:
80
字典是另一种可变容器模型,且可存储任意类型对象。 字典的每个键值 key=>value 对用冒号 : 分割,每个键值对之间用逗号 , 分割,整个字典包括在花括号 中 ,格式如下所示: d = {key1 : value1, key2 : value2 } 键一般是唯一的,如果重复最后的一个键值对会替 ...
分类:
编程语言 时间:
2020-07-27 15:43:58
阅读次数:
74
CDH 装完 ES 集群,查看 http://hadoop1:9200 报错 { "error" : { "root_cause" : [ { "type" : "master_not_discovered_exception", "reason" : null } ], "type" : "mas ...
分类:
其他好文 时间:
2020-07-27 15:38:00
阅读次数:
65
Oracle修改instance_name、db_name、db_unique_name、service_names 查看当前信息 SQL> show parameter name NAME TYPE VALUE db_name string dapuchai db_unique_name stri ...
分类:
数据库 时间:
2020-07-27 13:50:45
阅读次数:
98
加载或者安装R包 stringr,stringr时报错如下 libicui18n.so.64 找不到 加载: library(stringi)Error: package or namespace load failed for ‘stringi’ in dyn.load(file, DLLpath ...
分类:
其他好文 时间:
2020-07-27 09:39:17
阅读次数:
150
版本错误 处理方式 修改scipy的本文为 1.1.0 :pip install scipy==1.1.0 ...
分类:
其他好文 时间:
2020-07-26 22:54:48
阅读次数:
70
1.let <script> //1.声明变量 let a; let b,c,d; let e =100; let f=521,g='iloveyou',h=[]; //2.let变量不能重复定义 例 // let peope = 'bill' // let peope = 'jom' //会报错: ...
分类:
其他好文 时间:
2020-07-26 19:49:20
阅读次数:
86
input { stdin { } jdbc { # mysql 数据库链接 jdbc_connection_string => "jdbc:mysql:localhost/database?characterEncoding=utf8" # 用户名和密码 jdbc_user => "xxx" jd ...
分类:
其他好文 时间:
2020-07-26 19:44:44
阅读次数:
109
eclipse中选择->window->show view->other弹出对话框中选择general下面找problems然后双击,即可查看红叉原因. 我的项目报 :An error occurred while filtering resources 解决方案: 1.右键项目 2找到maven ...
分类:
系统相关 时间:
2020-07-26 19:12:44
阅读次数:
88
b for ssh.service failed because the control process exited with error code. See "systemctl status ssh.service" and "journalctl -xe" for details. 1.按照 ...
分类:
其他好文 时间:
2020-07-26 15:55:41
阅读次数:
180