前言 最近,公司有上Power家族的想法,自己也抓紧一切可利用的时间补课,研究研究Power家族的里Power Apps,感觉还是不错的,简单介绍一下给大家也看看。 1.登录Office 365首页,点击Apps列表里的Power Apps,如下图: 2.点击创建,可以快速创建Power Apps应 ...
分类:
移动开发 时间:
2020-07-22 02:15:19
阅读次数:
148
pycharm 不显示代码提示 1、检查IDE省电模式是否关闭状态!!! file → power save mode 取消掉 2、检查代码提示是否成功开启。 setting → Inspections → Spelling 要开启 setting → Inspections → Python 要打 ...
分类:
其他好文 时间:
2020-07-21 23:16:23
阅读次数:
86
应用场景很简单,当你需要使用一个对象,但想移除部分属性时,可以使用该方法。同样的,你可以实现一个对象属性选取方法。 /** * @param {object} object * @param {string[]} props * @return {object} */ function omit(o ...
分类:
其他好文 时间:
2020-07-21 14:03:15
阅读次数:
61
function []=datapro714()% 处理的数据截止7/14/20% [csvdata,~,rawcsvdata] = xlsread('who_covid_19_sit_rep_time_series.csv');[~,~,rawconfirmed] = xlsread('time_ ...
分类:
其他好文 时间:
2020-07-21 13:58:12
阅读次数:
68
首先,-1.#IND出现的原因是程序在做除法时出现除数为0的情况。如图1 图1 从图1可以看到,这里有三行数学运算的代码,除数分别是变量Rated_Power_SUM、Rated_Power,第 三行与第二行的除数相同,最后运算结果储存在变量Set_Power等变量中。众所周知,在做除法运算时,除数 ...
分类:
其他好文 时间:
2020-07-20 13:25:30
阅读次数:
87
1,series.values, seires.index.tolist(), series.items() values、index、items返回的对象分别是List、Index、Zip类型的数据 from pandas import Seriesemp=['001','002','003',' ...
分类:
其他好文 时间:
2020-07-19 23:53:16
阅读次数:
110
最近调试机顶盒没有遥控板 发现adb也可以模拟遥控板 应急一下蛮方便的 下面是输入一段文字 adb shell input text "demotest" 下面是输入特定键 adb shell input keyevent keycode 其中keycode是数字,不同的数字代表不同的操作,如下 电 ...
分类:
数据库 时间:
2020-07-19 17:48:46
阅读次数:
101
1,Series创建 1)列表+[索引], 索引不填时默认从0-N from pandas import Series , DataFrame weight = [3.5065, 3.4882, 3.4849, 3.4885, 3.4942 ] ses = Series(data = weight) ...
分类:
其他好文 时间:
2020-07-18 22:31:47
阅读次数:
70
本题考查库函数的实现原理,特别注意用O(logn)时间求a的n次方的优化算法。 C++版 #include <iostream> #include <cmath> using namespace std; bool g_InvalidInput = false; double powerWithUn ...
分类:
其他好文 时间:
2020-07-18 22:28:09
阅读次数:
76
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn=105; const int mod=1e9+7; int n; struct matrix { ll a[maxn][maxn]; m ...
分类:
其他好文 时间:
2020-07-18 22:14:26
阅读次数:
75