上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 34 下一页
摘要: 1 下载Go安装包:386 电脑操作系统:32位。msi安装版;zip压缩版。msi好。 安装路径:不要有中文。 查看已安装版本:go version 2 代码执行: 执行go文件: go run hello.go go文件不能随便存放。 需要设置工作空间:gopath目录。 1 新建名称为 GOP 阅读全文
posted @ 2021-03-07 17:23 pythoner_wl 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 编程语言:开发效率,执行效率。 Go 语言:代码相对简单,执行速度快。 1 垃圾回收机制,动态分配内存空间,需要手动释放,垃圾回收机制自动释放回收。 2 接近于C的执行效率,接近于python的开发效率。 3 谷歌出品,必属精品。开源语言。 4 面向对象。 5 强大的标准库。 6 部署方便。 7 天 阅读全文
posted @ 2021-03-07 17:22 pythoner_wl 阅读(56) 评论(0) 推荐(0) 编辑
摘要: sudo firewall-cmd --list-all # 查看防火墙已开放的服务和端口 sudo firewall-cmd --add-port=5003/tcp # 添加5003端口 # 永久增加端口 firewall-cmd --zone=public --add-port=80/tcp - 阅读全文
posted @ 2021-03-01 16:00 pythoner_wl 阅读(1822) 评论(0) 推荐(0) 编辑
摘要: sql_module_base = f""" SELECT COUNT(distinct id,date_format(creat_time, '%Y-%m_%d %H:%M')) as count, shift, MIN( creat_time ) as creat_time, YEAR ( cr 阅读全文
posted @ 2021-02-09 15:57 pythoner_wl 阅读(46) 评论(0) 推荐(0) 编辑
摘要: book = xlwt.Workbook(encoding='utf-8') sheet_index = book.add_sheet('首页') style = xlwt.XFStyle() # 创建一个样式对象,初始化样式 al = xlwt.Alignment() al.horz = 0x02 阅读全文
posted @ 2021-02-09 15:29 pythoner_wl 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 字典等容器类型使用不当,字典套字典,造成不该出现在内部字典中的数据出现在了字典中 解决:深浅拷贝,每次给字典中的key赋值为一个字典,然而,这个字典从来就没换过,只是定义了一个,然后一直用,造成报错。深拷贝解决。重新定义赋值。 # 错误:一直是一个地址。 defect_dict = {0: {}, 阅读全文
posted @ 2021-02-05 16:33 pythoner_wl 阅读(77) 评论(0) 推荐(0) 编辑
摘要: f = pd.read_sql(con=conn, sql=sql) df1 = f.iloc[:1000000, :] df2 = f.iloc[1000000:2000000, :] df3 = f.iloc[2000000:3000000, :] df4 = f.iloc[3000000:40 阅读全文
posted @ 2021-02-04 10:28 pythoner_wl 阅读(176) 评论(0) 推荐(0) 编辑
摘要: df.loc[1, '地址(断网)'] = '=HYPERLINK("#Sheet2!B2","单元格的名字")' # 超链接写入单元格 问题:打开excel单元格是文本,需要点击公式框,然后才可以变成连接, 解决:用xlwt模块,无问题 import xlwt book = xlwt.Workbo 阅读全文
posted @ 2021-02-02 17:47 pythoner_wl 阅读(514) 评论(0) 推荐(0) 编辑
摘要: # 这种做法严重错误,如果是 1号?计算出来的是 0号 t = datetime.datetime(n_time.year, n_time.month, n_time.day - 1, 23, 00, 00) # 应该使用 timedelta 来计算时间差 t = n_time - datetime 阅读全文
posted @ 2021-02-01 13:55 pythoner_wl 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 数据库报错:Access denied for user 'root'@'localhost' (using password: YES” 解决:就是密码错了 安装 pyqt5-tools 不能打开 designer.exe : 解决:https://www.cnblogs.com/xiege/p/ 阅读全文
posted @ 2021-01-22 18:43 pythoner_wl 阅读(1663) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 34 下一页