上一页 1 ··· 115 116 117 118 119 120 121 122 123 ··· 178 下一页
  2020年6月17日
摘要: 阅读全文
posted @ 2020-06-17 14:38 一杯明月 阅读(309) 评论(0) 推荐(0)
摘要: ThinkPad W530搭载丰富的接口设计,机身左侧配有风扇散热孔、Mini DisplayPort接口、VGA视频接口、USB3.0接口x2、USB2.0接口、IEEE 1394接口、无线设备硬件开关、智能卡插槽而右侧则配备安全缩孔、以太网RJ45接口、DVD光驱、组合音频插孔、多功能读卡器插槽 阅读全文
posted @ 2020-06-17 10:59 一杯明月 阅读(5889) 评论(0) 推荐(0)
  2020年6月16日
摘要: 判断两个字符串是否相等: 用 == a='D:\qcc\HDmap_statistics_opendrive\python_code' b='D:\qcc\HDmap_statistics_opendrive\python_code' print(a==b) 返回值:True 阅读全文
posted @ 2020-06-16 18:32 一杯明月 阅读(8897) 评论(0) 推荐(0)
摘要: tline = fgets(fileID) 从文件中读取行,保留换行符 (换行符和回车符) 从文件中读取行,保留换行符 读取指定的文件的下一行,包括换行符。 fileid是一个整数文件标识符从fopen获得。 tline是一个文本字符串,除非该行只包含结束的文件标记。在这种情况下,tline是数字值 阅读全文
posted @ 2020-06-16 11:44 一杯明月 阅读(2741) 评论(0) 推荐(0)
  2020年6月15日
摘要: https://www.bilibili.com/video/BV1es411x7ak?from=search&seid=11774848735961303685 持琴姿势: 三点法:右胳膊肘(琴的最高点),左手,胸部。 握持好琴之后,最下面最细的那根琴弦是1弦,网上依次为2,3,4,5,6弦。 大 阅读全文
posted @ 2020-06-15 13:40 一杯明月 阅读(606) 评论(0) 推荐(0)
  2020年6月13日
摘要: 函数dir 可以使用函数dir,D = DIR(‘directory_name’)返回一个结构数组,包含了文件夹directory_name下的子文件夹和子文件的一些信息,第1个成员是文件名,第4个成员表示是否为文件夹。 要注意的是第1个数组元素和第2个数组元素分别是’.’和’..’,表示当前目录和 阅读全文
posted @ 2020-06-13 17:15 一杯明月 阅读(4670) 评论(0) 推荐(0)
  2020年6月12日
摘要: import os import shutil def del_file(filepath): """ 删除某一目录下的所有文件或文件夹 :param filepath: 路径 :return: """ del_list = os.listdir(filepath) for f in del_lis 阅读全文
posted @ 2020-06-12 21:48 一杯明月 阅读(4047) 评论(0) 推荐(0)
摘要: 创建文件夹 import os def mkdir(path): folder = os.path.exists(path) if not folder: #判断是否存在文件夹如果不存在则创建为文件夹 os.makedirs(path) #makedirs 创建文件时如果路径不存在会创建这个路径 p 阅读全文
posted @ 2020-06-12 21:13 一杯明月 阅读(15112) 评论(0) 推荐(1)
  2020年6月10日
摘要: python判断某个文件是否存在,如果存在则删除: if os.path.exists(filefullpath): os.remove(filefullpath) 阅读全文
posted @ 2020-06-10 22:51 一杯明月 阅读(12297) 评论(0) 推荐(1)
  2020年6月9日
摘要: 1. folder是相对路径: folder = './abc/';if ~exist(folder,'dir') mkdir(folder)end 在当前文件夹(存放所运行的matlab代码的文件夹)中判断是否存在文件夹abc,如果不存在,则创建。 2. folder是绝对路径: folder = 阅读全文
posted @ 2020-06-09 11:40 一杯明月 阅读(5343) 评论(0) 推荐(1)
上一页 1 ··· 115 116 117 118 119 120 121 122 123 ··· 178 下一页