上一页 1 2 3 4 5 6 ··· 17 下一页

2019年10月30日

git 添加 .gitignore 没有生效

摘要: 加入.gitignore 文件,忽略文件也被上传,执行下面操作然后push. git rm r cached . git add . git commit m 'add .gitignore' 阅读全文

posted @ 2019-10-30 08:39 游荡的鱼 阅读(587) 评论(0) 推荐(0) 编辑

2019年10月21日

python 高德定位查询

摘要: ```bash encoding=utf 8 import json import pprint import re import os import pandas as pd import requests import time def getAddressLocation(addr_keywo 阅读全文

posted @ 2019-10-21 20:34 游荡的鱼 阅读(764) 评论(0) 推荐(0) 编辑

2019年10月18日

pyinstaller 打包问题记录

摘要: python 64位机器上 打包 32位 程序: pyinstaller F test/test.py 打包 好后 在winxp上运行不了,打包机器是64位的 然后下载:anaconda: 下载32位的 python3.7 的版本,https://repo.anaconda.com/archive/ 阅读全文

posted @ 2019-10-18 18:25 游荡的鱼 阅读(1381) 评论(0) 推荐(0) 编辑

2019年9月16日

python 计算代码运行所花时间 timeit

摘要: ```bash import timeit timeit.timeit('time.sleep(1)',number=2) > 2.001138338268717 ``` 阅读全文

posted @ 2019-09-16 13:11 游荡的鱼 阅读(636) 评论(0) 推荐(0) 编辑

2019年9月10日

python time模块 时间戳转换

摘要: 时间戳转换 时间戳获取: 时间戳转时间字符串: 时间戳 时间数组 格式化时间字符串 时间字符串转时间戳: 格式时间字符串 时间数组 时间数组 时间戳转换时间字符串: time_stamp = time.time() 获取当前时间戳 time_array = time.localtime(time_s 阅读全文

posted @ 2019-09-10 11:37 游荡的鱼 阅读(7416) 评论(0) 推荐(0) 编辑

2019年8月23日

linux yum repolist 报错

摘要: 参考文档: https://blog.csdn.net/ys5773477/article/details/53814581 原因:rpm的数据库被损坏了 解决办法:重建rpmdb数据库 阅读全文

posted @ 2019-08-23 11:26 游荡的鱼 阅读(2436) 评论(0) 推荐(0) 编辑

2019年8月9日

查看ip地址信息以及用户信息

摘要: RIR (Regional Internet Registry) 现全球有5大RIR机构 1.RIPE(Reseaux IP Europeans)欧洲IP地址注册中心——服务于欧洲、中东地区和中亚地区; 2.LACNIC(Lation American and Caribbean Internet 阅读全文

posted @ 2019-08-09 22:32 游荡的鱼 阅读(618) 评论(0) 推荐(0) 编辑

2019年8月3日

python pandas 直方图

摘要: bash Make plots of Series or DataFrame using the backend specified by the option . By default, matplotlib is used. Parameters data : Series or DataFra 阅读全文

posted @ 2019-08-03 12:56 游荡的鱼 阅读(4336) 评论(0) 推荐(0) 编辑

2019年8月2日

mysql 时间做差值 和 求平均数取小数点位数

摘要: select (TO_DAYS("20190802") TO_DAYS("2019 07 29 23:00:00")); select TRUNCATE(2.32,1); 阅读全文

posted @ 2019-08-02 11:29 游荡的鱼 阅读(653) 评论(0) 推荐(0) 编辑

2019年7月12日

python pandas 读取文件 写入文件excel

摘要: 读取数据 写入数据 阅读全文

posted @ 2019-07-12 12:02 游荡的鱼 阅读(4761) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 17 下一页

导航