ICode9

精准搜索请尝试: 精确搜索
  • 百万年薪python之路 -- MySQL数据库之 MySQL行(记录)的操作(二) -- 多表查询2019-09-03 18:54:26

    MySQL行(记录)的操作(二) -- 多表查询 数据的准备 #建表 create table department( id int, name varchar(20) ); create table employee( id int primary key auto_increment, name varchar(20), sex enum('male','female') not null default 'male', age int,

  • 多表查询2019-08-29 13:02:23

    本节重点: 多表连接查询 符合条件连接查询 子查询 准备工作:准备两张表,部门表(department)、员工表(employee) create table department(id int,name varchar(20) );create table employee(id int primary key auto_increment,name varchar(20),sex enum('male','female') not null d

  • PAT甲级——A1036 Boys vs Girls2019-07-27 21:02:31

    This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Input Specification: Each input file contains one test case. Each case contains a positive integer N, follow

  • 1036 Boys vs Girls (25 分)2019-06-16 14:01:00

    This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Input Specification: Each input file contains one test case. Each case contains a positive integer N, follow

  • spark作业2019-06-13 16:48:49

    假定用户有某个周末网民网购停留时间的日志文本,基于某些业务要求,要求开发 Spark应用程序实现如下功能: 1、实时统计连续网购时间超过半个小时的女性网民信息。 2、周末两天的日志文件第一列为姓名,第二列为性别,第三列为本次停留时间,单 位为分钟,分隔符为“,”。     数据:   log1.tx

  • Pandas处理数据基本操作汇总2019-04-02 11:55:14

    本文主要介绍pandas的一些基本操作,也是用的比较频繁是操作。主要分为以下几点: 1. pandas查看数据类型等 2. pandas构建一个完整的dataframe 3. pandas取行列的3种方法 4. Pandas实现where filter以及逻辑语句 5. pandas对where条件筛选后只有一行的dataframe取其中某一列的值

  • python-*args与**kwagrs 动态形参使用说明2019-03-24 09:38:19

      fruits = ['apple','banana','pear','grape']student = { "name":"hanmeimei", "age":22, "sex":"female"} *args普通动态参会将传入多余的参数组合成一个元祖 def func1(x,*args):   pr

  • 第四篇:记录相关操作 多表查询2019-03-24 08:51:54

    http://www.cnblogs.com/linhaifeng/articles/7267596.html 一 介绍 本节主题 多表连接查询 复合条件连接查询 子查询 准备表 #建表create table department(id int,name varchar(20) );create table employee(id int primary key auto_increment,name varchar(20),sex enum('m

  • day04--流程控制之if2019-03-21 19:44:17

    编程的目的是让计算机像人脑一样工作,因此就需要让计算机具备人脑一样的逻辑思维,这里就需要用到计算机语言的流程控制: 流程控制之if......else   语法1:       if 条件:           代码块  # 一组代码块的特点:是自上而下依次运行,在python中,用缩进来标注代码块的等

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有