摘要: open .bash_profile //打开路径配置文件 将anaconda自动配置的部分注释掉 ## >>> conda init >>>## !! Contents within this block are managed by 'conda init' !!#__conda_setup=" 阅读全文
posted @ 2019-06-24 09:25 罗澜 阅读(2161) 评论(0) 推荐(0) 编辑
摘要: git config --global http.postBuffer 524288000 阅读全文
posted @ 2018-12-08 00:58 罗澜 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 是因为环境变量设置错误 1.在命令行中输入: export PATH=/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin 可以实现暂时的使用。 2.输入cd ~/ #进入当前用户的home目录 3.创建bash_profile 执行命令: touch .bash 阅读全文
posted @ 2018-11-23 00:57 罗澜 阅读(8948) 评论(0) 推荐(0) 编辑
摘要: 国内源: 新版ubuntu要求使用https源,要注意。 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.e 阅读全文
posted @ 2018-11-04 18:35 罗澜 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 这个题目主要是题意上的理解。 解决问题的方法是类似于斐波那契数列的解法 首先有第一行和第二行的值。 然后后面的str由前一行的来决定 保留前一行的数值,判断是否重复 通过遍历来判断重复,如 pre=‘aabbbccccd’ 首先将当下的run += ‘2a’ run += ‘3b’ run += ‘ 阅读全文
posted @ 2018-10-29 16:13 罗澜 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 主要问题是删除字符串中的符号和空格 Python filter() 函数 用于过滤序列,过滤掉不符合条件的元素,返回由符合条件元素组成的新列表。 py3返回的是迭代器元素 语法: filter(function, iterable) iterable--可迭代元素 function:str.isdi 阅读全文
posted @ 2018-10-26 14:05 罗澜 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 利用到了python中字典的collections.Counter()函数 collections中函数Counter的使用和用法: counter工具用于支持便捷和快速地计数, from collections import Counter cnt = Counter() for word in 阅读全文
posted @ 2018-10-24 21:25 罗澜 阅读(546) 评论(0) 推荐(0) 编辑