摘要:
1.设计编写一个控制台应用程序,练习类的继承。 (1) 编写一个抽象类 People,具有”姓名”,”年龄”字段,”姓名”属性,Work 方法。 (2) 由抽象类 People 派生出学生类 Student 和职工类 Employer,继承 People 类,并 覆盖Work 方法。 (3) 派生类 阅读全文
摘要:
鞍点定义:该位置上的元素值在行中最大,在该列上最小 代码示例: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; na 阅读全文
摘要:
问题描述: Container killed by the ApplicationMaster. Container killed on request. Exit code is 143 Container exited with a non-zero exit code 143 21/10/10 阅读全文
摘要:
前提:导入扩展包 import pandas as pd import pymysql ①读取csv文件 fpath='/test.csv'ratings=pd.read_csv(fpath)print(ratings.head(5)) #读取前n行数据print(ratings.shape) #查 阅读全文
摘要:
WTF表单验证可分为3个步骤: ①导入wtf扩展提供的表单验证器。(from wtforms.validators import DataRequired,EqualTo) ②定义表单类 # 定义表单类 class RegisterForm(FlaskForm): username =StringF 阅读全文
摘要:
Flask_WTF实现表单可分为六个步骤: ①导入FlaskForm扩展包(from flask_wtf import FlaskForm) ②导入StringField,PasswordField,SubmitField (from wtforms import StringField,Passw 阅读全文
摘要:
学习内容:①判断请求方式(request.method) from flask import Flask,render_template,request app = Flask(__name__) @app.route('/',methods=['GET','POST']) def hello_wo 阅读全文
摘要:
①mysql建表test1 ②cd /opt/module/sqoop进入scoop路径 ③ bin/sqoop export \ > --connect jdbc:mysql://master:3306/mysql \ > --username root \ > --password 000000 阅读全文
摘要:
学习内容:数据导入,要求将CSV格式或者EXCEL格式的文件导入到HIVE数据仓库中; ①hive建表:test1 create table test1 (InvoiceNo String, StockCode String, Description String, Quantity String, 阅读全文
摘要:
1.判断表是否存在 public static boolean isTableExit(String tableName) throws IOException { // //获取配置文件信息 // //HBaseConfiguration configuration=new HBaseConfig 阅读全文