最新 最热

VBS基础篇 - 对象(3) - FileSystemObject对象

文件系统是所有操作系统最重要的部分之一,脚本经常会需要对文件及文件夹进行访问和管理,在Vbs中对桌面和文件系统进行访问的顶级对象是FileSystemObject(FSO),这个对象特别复杂,是vbs进行文件操作的核心。...

2020-10-10
1

-bash: ls: command not found或者-bash: cd: command not found解决办法

执行   source   /etc/profile生效之后就可以正常使用Linux命令了

2020-09-29
1

idea 错误:找不到或无法加载主类 解决

问题出现的很莫名其妙,,在项目的PATH 中,将path修改为跟当前项目在一个路径下就可以了

2020-09-27
0

Tree - 129. Sum Root to Leaf Numbers

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.

2020-09-23
1

Dynamic Programming - 64. Minimum Path Sum

Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.

2020-09-23
1

Tree - 112. Path Sum

Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.

2020-09-23
1

在图中添加多边形

在matplotlib中有一个子模块patches, 提供了绘制各种多边形的功能,常用的多边形及其画法如下

2020-09-23
1

Python 技术篇-读取本地文件的字节数

因为想调用百度语音的 api,需要获取语音文件的字节数。 其实很简单,os.path.getsize() 就可以获取到。

2020-09-23
1

Linux环境变量、cp命令、mv命令和文档查看

把命令文件配置到PATH里后,就能直接运行。echo $PATH命令可以查看PATH路径:

2020-09-23
1

python第二十九课——文件读写(读取数据操作)

演示读取数据操作:path=r'a.txt'1.打开文件f1=open(path,'r')2.读取数据content1=f1.read(3)print(content1)content1=f1.read(6)print(content1)content1=f1.read()print(co......

2020-09-16
0