摘要:
<!-- 文章内容 --> 一:Vmware上安装Linux系统 二:配置Vmware NAT网络。(详细说明:vmware三种网络模式 - 简书)。 NAT是网络地址转换,是在宿主机和虚拟机之间增加一个地址转换服务,负责外部和虚拟机之间的通讯转接和IP转换。 部署Hadoop集群,这里选择NAT模 阅读全文
摘要:
select * from information_schema.columns where table_schema='public' and table_name='表名称 '; 阅读全文
摘要:
下载:1、首先找到需要的包访问:https://pypi.org/在搜索框中输入你要查找的包名,然后点击搜索2、选择要下载的包的版本,点击download files3、选择file Type为souces的源码包,点击即可下载 安装:1、下载源码包cd /tmp/wget https://file 阅读全文
摘要:
#!/usr/bin/env python# -*- coding: utf-8 -*-class student: def __init__(self, name_list): self.student_name_list = name_list def __getitem__(self, item): return self.student_name_... 阅读全文
摘要:
理解python一切皆对象: 1.所有的类都是由type创建的 2.所有的类的基类都是object 3.type是类,也是实例,type的基类是object,type对象是由type创建的 4.object对象是由type创建的 阅读全文