# 随机分配老师到办公室 import random teachers = ['a', 'b', 'c', 'd', 'e'] offices = [[], [], []] for name in teachers: num = random.randint(0, 2) offices[num].a ...
分类:
其他好文 时间:
2021-01-11 10:41:13
阅读次数:
0
# 打印每个o出现的位置 str1 = "hellopythonhelloworld" str2 = 'hellopythonhelloworld' str3 = 'hellopythonhelloworl' index = 0 for i in str1: if i == 'o': print(i ...
分类:
其他好文 时间:
2021-01-11 10:40:33
阅读次数:
0
# 练习题3 # 编写函数, 实现计算器中加减乘除功能 # 例如:输入: 2+33 def computer(a, b, c): if b == "+": print(int(a) + int(c)) elif b == "-": print(int(a) - int(c)) elif b == " ...
分类:
其他好文 时间:
2021-01-11 10:39:55
阅读次数:
0
# 函数版学员管理系统 class System1(): info = [] def info_print(self): print('请选择功能:' + '-' * 30) print(' 1、添加学员\t', '2、删除学员\t', '3、修改学员\t', '4、查询学员\n', '5、显示学员 ...
分类:
其他好文 时间:
2021-01-11 10:39:10
阅读次数:
0
引言 Apache Spark 2.2 以及以上版本提供的三种 API - RDD、DataFrame 和 Dataset,它们都可以实现很多相同的数据处理,它们之间的性能差异如何,在什么情况下该选用哪一种呢? RDD 从一开始 RDD 就是 Spark 提供的面向用户的主要 API。从根本上来说, ...
分类:
数据库 时间:
2021-01-08 10:40:55
阅读次数:
0
JS function 是函数也是对象, 浅谈原型链 JS 唯一支持的继承方式是通过原型链继承, 理解好原型链非常重要, 我记录下我的理解 1. 前言 new 出来的实例有 _proto_ 属性, 并且指向其构造函数的 prototype 对象 function Person(){} const p ...
分类:
Web程序 时间:
2021-01-05 11:43:54
阅读次数:
0
1 安装与jdk路径设置 【Red5】如何搭建环境以及调试Red5(1.0.6版本)应用(一)_进击的羊驼驼的大绿洲-CSDN博客 2 推送摄像头流到直播服务 Red5服务器搭建,流媒体rtmp推流实现H5在线直播以及遇到的坑_羊羊羊92的博客-CSDN博客 注意:demo里的'file': 'st ...
分类:
其他好文 时间:
2021-01-05 10:42:25
阅读次数:
0
11.如何从CDN加载jQuery? 下面是从所有3个CDN加载jQuery的代码。 从Google CDN加载jQuery Framework的代码 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/j ...
分类:
编程语言 时间:
2021-01-04 11:26:30
阅读次数:
0
<body> <div id="app"> <!-- 3.使用组件 --> <my-cpn></my-cpn> </div> <script src='https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js'></script> <script> // ...
分类:
其他好文 时间:
2021-01-02 11:06:08
阅读次数:
0
才上手的新人主播却还在直播间很尴尬的大眼瞪小眼,找不着话题聊,转化率惨淡。直播转化率实际上分二种,一类是关心转化率,引导转化率直播间过路人关注账号,变成粉丝团。第二类是销售成交,让粉丝团在直播间下单购买商品。
分类:
其他好文 时间:
2020-12-31 12:50:28
阅读次数:
0