1 os.getcwd()获取当前工作目录,即当前python脚本工作的目录路径 2 os.chdir("dirname")改变当前脚本工作目录;相当于shell下cd 3 os.makedirs ('dirname1/dirname2 ')可生成多层递归目录 4 os.removedirs ('d ...
分类:
其他好文 时间:
2021-02-18 12:55:50
阅读次数:
0
使用os.OpenFile()打开文件,flag选择 O_WRONLY|O_TRUNC 即可 具体代码: import ( "fmt" "os" "bufio" ) func main(){ // 打开一个存在的文件,将原来的内容覆盖掉 path := "./hello.txt" // O_WRON ...
分类:
其他好文 时间:
2021-02-17 14:38:25
阅读次数:
0
使用"os/ioutil"包中的ReadFile方法, func ReadFile(path string) ([]byte, err) package main import ( "fmt" "io/ioutil" ) func main(){ // ioutil包中的ReadFile,一次性读取 ...
分类:
其他好文 时间:
2021-02-17 14:34:50
阅读次数:
0
文件持久化存储 目录 文件持久化存储 脑图 文件的操作 with 语句 OS模块 json模块 存储为Excel文件 脑图 文件的操作 import os import platform # 1. 获取操作系统类型 print(os.name) # 2. 获取主机信息,windows系统使用plat ...
分类:
编程语言 时间:
2021-02-17 14:15:59
阅读次数:
0
1)上午打开移动硬盘时,发现之前从MAC上拷贝的部分电影无法正常播放(显示为虚色,修改时间也被改 变),提示:项目“XXX”已被 OS X 使用,不能打开。这是由于文件曾经在MAC上打开过,被系统添加 额外的属性。 2)在终端中进入到硬盘内的对应文件目录,输入:ls -l 命令,可以看到: 这些被占 ...
分类:
其他好文 时间:
2021-02-17 14:03:48
阅读次数:
0
怎么向jekyll博客中插入音频(MP3、MP4等) 首先参考这两篇文章 jekyll个人博客中添加音乐播放插件 pen embed 通过上面的文章大概就知道如何插入mp3文件 当然看完上两篇文章中写的,也就明白了插入媒体文件时怎样一回事 下面是我插入的一个音乐和一个视频: Your browser ...
分类:
其他好文 时间:
2021-02-16 11:59:40
阅读次数:
0
import requests import re import os import json import time as t class QQmusic(): """代码仅供学习""" def __init__(self): """初始化""" self.headers = { 'Accept- ...
分类:
其他好文 时间:
2021-02-15 12:44:00
阅读次数:
0
需要引入geopy库 pip install geopy 安装即可 import requests from bs4 import BeautifulSoup import pandas as pd import json import os from tqdm import tqdm from c ...
分类:
编程语言 时间:
2021-02-15 12:35:11
阅读次数:
0
import xml.etree.ElementTree as ET import os import json coco = dict() coco['images'] = [] coco['type'] = 'instances' coco['annotations'] = [] coco['c ...
分类:
其他好文 时间:
2021-02-15 12:02:04
阅读次数:
0
package main import ( "bufio" "fmt" "io" "log" "os" "os/exec" // "strings" ) func checkExe2(exeAdress string) { cmd := exec.Command("cmd.exe", "/c", " ...
分类:
其他好文 时间:
2021-02-09 12:32:53
阅读次数:
0