51dev.com IT技术开发者社区

51dev.com 技术开发者社区

python json 文件读写

python json 文件读写

 importjsontest_dict={'bigberg':7600,'iPhone':6300,'Bike':800,'shirt':300}print(test_dict)print(type(test_dict))#字典#dumps将数据转换成字符串json_str=json.d...

json 保存

json 保存

 withopen(mpath,"w")ask:dlist=[]forkeyinyaml_dict["data"]:dlist.append(yaml_dict["data"][key])print(dlist)yaml_dict["data"]=dlistjson.dump(yaml_d...

java 使用正则判断是不是一个数字

java 使用正则判断是不是一个数字

 publicclassNumeric{publicstaticvoidmain(String[]args){Stringstring="-1234.15";booleannumeric=true;numeric=string.matches("-?\d+(\.\d+)?");if(num...

No module named 'pydispatch'

No module named 'pydispatch'

 pipinstallPyDispatcher ...

c++  算法 栅格中两点之间连线

c++ 算法 栅格中两点之间连线

 屏幕划线,通过平面坐标系实现,基本组成是一个一个的点,起点为A,终点为B 本文的算法,可以实现平面栅格中,指定的A,B两点之间进行连线(代码中仅打印了两点间需要画出的坐标点) #include<iostream>#include<algorithm&...

python3.7 安装pyopengl,环境搭建

python3.7 安装pyopengl,环境搭建

 安装环境:win1064位操作系统,python3.7一.安装py库需要用pip安装pipinstallPyOpenGLPyOpenGL_accelerate可能会报错,是因为没有安装对应的c++库 打开网站https://www.lfd.uci.edu/~gohlke/pyt...

python 安装 vrml

python 安装 vrml

 pipinstallPyVRML97 ...

机智人 激光雷达 配置

机智人 激光雷达 配置

 一.下载以及设置IP首先需要下载两个文件:http://www.znrobo.com/download/解压后我们会看到一个安装程序目录,还有一个是package 下面安装IP配置助手: 一直下一步,安装完毕后,我们需要一根数据线,连接激光前端配置插口,另一端USB插...

ubuntu server 16.04(amd 64) 配置网桥,多网卡使用激活

ubuntu server 16.04(amd 64) 配置网桥,多网卡使用激活

 安装了Ubuntu16.04的server版本,结果进入系统输入ifconfig后发现,只有一个网卡enp1s0,还有一个网络回路lo,ifconfig-a发现其实一共有四个网卡,enp1s0,enp2s0,enp3s0,enp4s0。 我们的工控机有四个网口,现在需要把前三个...

ubuntu server  多网卡

ubuntu server 多网卡

 https://wenku.baidu.com/view/51fb15742f60ddccdb38a007.html ...

c++ 判断容器A是否是容器B的子集,如果是,返回true(includes)

c++ 判断容器A是否是容器B的子集,如果是,返回true(includes)

 #include<iostream>//cout#include<algorithm>//includes,sortusingnamespacestd;boolmyfunction(inti,intj){returni<j;}intmain(){intcon...

c++ 判断给定区间是否是一个heap. O(N)  (is_heap)

c++ 判断给定区间是否是一个heap. O(N) (is_heap)

 #include<iostream>//cout#include<algorithm>//is_heap,make_heap,pop_heap#include<vector>//vectorusingnamespacestd;intmain(){vec...

ubuntu16.04中开启和关闭防火墙

ubuntu16.04中开启和关闭防火墙

 开启防火墙ufwenable关闭防火墙ufwdisable ...

c++ 容器元素填充(generate)

c++ 容器元素填充(generate)

 #include<iostream>//cout#include<algorithm>//generate#include<vector>//vector#include<ctime>//time#include<cstdlib>...

DEV-C++设置C++11标准

DEV-C++设置C++11标准

 DEV-C++默认的标准是C++98,改成C++11的方法如下: Tools->CompilerOptions->Setting->CodeGeneration->Languagestandard(-std),选ISOC++11。 ...