上一页 1 2 3 4 5 6 7 ··· 24 下一页
摘要: 修改mysql密码 这个命令是对的。不过有要求。下面有改要求的办法。或者可以根据ta要求的设定密码 ALTER USER 'root'@'172.16.5.125' IDENTIFIED BY '123456'; [Err] 1819 - Your password does not satisfy 阅读全文
posted @ 2020-04-26 23:28 learnacode 阅读(2043) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/flywang/p/4801027.html 阅读全文
posted @ 2020-04-24 11:20 learnacode 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #列表转字符串(只有字符串): li = ["ety", "xyz", "hello", "world"] s = "".join(li) print(s) s = ",".join(a) print(s) ''' etyxyzhelloworld ety,xyz,hello,world ''' 阅读全文
posted @ 2020-04-23 01:16 learnacode 阅读(147) 评论(0) 推荐(0) 编辑
摘要: dict_a = {} dict_a['a'] = 'b' dict_a['C'] = 'D' print(dict_a) # {'a': 'b', 'C': 'D'} 阅读全文
posted @ 2020-04-23 01:01 learnacode 阅读(145) 评论(0) 推荐(0) 编辑
摘要: /li/a/@herf 这样取的应该是href的内容/li/a/text() 这样取得是text内容抄自https://blog.csdn.net/weixin_39263590/article/details/80046981属性定位的写法: ("//标签名[ @属性= "属性值"]") 抄自ht 阅读全文
posted @ 2020-04-23 00:44 learnacode 阅读(941) 评论(0) 推荐(1) 编辑
摘要: # -*- coding:utf-8 -*- import openpyxl import pypinyin wb = openpyxl.load_workbook(r"D:\PythonCode\AfterInstalled\爬取共享平台\人口库设计20200419.xlsx") ws = wb. 阅读全文
posted @ 2020-04-22 23:46 learnacode 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 私有网络(VPC)私有网络是针对公有云的基础网络(经典网络)来定义的一种概念。 VPC(Virtual Private Cloud)是公有云上自定义的逻辑隔离网络空间,是一块可我们自定义的网络空间,与我们在数据中心运行的传统网络相似,托管在VPC内的是我们在私有云上的服务资源,如云主机、负载均衡、云 阅读全文
posted @ 2020-03-09 21:37 learnacode 阅读(445) 评论(0) 推荐(1) 编辑
摘要: 1、引言 搞网络通信应用开发的程序员,可能会经常听到外网IP(即互联网IP地址)和内网IP(即局域网IP地址),但他们的区别是什么?又有什么关系呢?另外,内行都知道,提到外网IP和内网IP就不得不提NAT路由转换这种东西,那这双是什么鬼?本文就来简单讲讲这些到底都是怎么回事。 1、每台电脑都必须要一 阅读全文
posted @ 2020-03-08 15:57 learnacode 阅读(338) 评论(0) 推荐(0) 编辑
摘要: linux安装Python和Django 首先目录结构看一下 。在opt里安软件。 如果pip安装,请用豆瓣云清华大学的快 pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple django==1.11.9​ 1.安装python3 先编译 阅读全文
posted @ 2020-03-06 22:30 learnacode 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 虚拟机安装centos发现inet为127.0.0.1,导致Xshell连接不上 最终解决:首先是要桥接。然后,再按下面的弄。 centos没有ifcfg-eth0或者ifcfg-eth0文件内容为空https://blog.csdn.net/weixin_33912445/article/deta 阅读全文
posted @ 2020-03-05 20:12 learnacode 阅读(441) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 24 下一页