上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 28 下一页
摘要: 1.设计编写一个控制台应用程序,练习类的继承。 (1) 编写一个抽象类 People,具有”姓名”,”年龄”字段,”姓名”属性,Work 方法。 (2) 由抽象类 People 派生出学生类 Student 和职工类 Employer,继承 People 类,并 覆盖Work 方法。 (3) 派生类 阅读全文
posted @ 2021-10-15 09:25 CherriesOvO 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 鞍点定义:该位置上的元素值在行中最大,在该列上最小 代码示例: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; na 阅读全文
posted @ 2021-10-13 11:14 CherriesOvO 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 问题描述: 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 阅读全文
posted @ 2021-10-10 09:28 CherriesOvO 阅读(2553) 评论(0) 推荐(1) 编辑
摘要: 前提:导入扩展包 import pandas as pd import pymysql ①读取csv文件 fpath='/test.csv'ratings=pd.read_csv(fpath)print(ratings.head(5)) #读取前n行数据print(ratings.shape) #查 阅读全文
posted @ 2021-10-07 09:35 CherriesOvO 阅读(106) 评论(0) 推荐(0) 编辑
摘要: WTF表单验证可分为3个步骤: ①导入wtf扩展提供的表单验证器。(from wtforms.validators import DataRequired,EqualTo) ②定义表单类 # 定义表单类 class RegisterForm(FlaskForm): username =StringF 阅读全文
posted @ 2021-10-06 08:39 CherriesOvO 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Flask_WTF实现表单可分为六个步骤: ①导入FlaskForm扩展包(from flask_wtf import FlaskForm) ②导入StringField,PasswordField,SubmitField (from wtforms import StringField,Passw 阅读全文
posted @ 2021-10-05 10:42 CherriesOvO 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 学习内容:①判断请求方式(request.method) from flask import Flask,render_template,request app = Flask(__name__) @app.route('/',methods=['GET','POST']) def hello_wo 阅读全文
posted @ 2021-10-04 23:51 CherriesOvO 阅读(223) 评论(0) 推荐(0) 编辑
摘要: ①mysql建表test1 ②cd /opt/module/sqoop进入scoop路径 ③ bin/sqoop export \ > --connect jdbc:mysql://master:3306/mysql \ > --username root \ > --password 000000 阅读全文
posted @ 2021-09-29 08:54 CherriesOvO 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 学习内容:数据导入,要求将CSV格式或者EXCEL格式的文件导入到HIVE数据仓库中; ①hive建表:test1 create table test1 (InvoiceNo String, StockCode String, Description String, Quantity String, 阅读全文
posted @ 2021-09-29 08:12 CherriesOvO 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 1.判断表是否存在 public static boolean isTableExit(String tableName) throws IOException { // //获取配置文件信息 // //HBaseConfiguration configuration=new HBaseConfig 阅读全文
posted @ 2021-09-20 11:15 CherriesOvO 阅读(62) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 28 下一页