-
重要的文件 重要的文件
重要的文件 重要的文件 -重要的文件重要的文件重要的文件重要的文件
- 2023-08-12 23:25:03下载
- 积分:1
-
Python对文件IO操作
filePath="c:/test/tt.txt"
#从文件中读取信息
f=open(filePath, "r")#运用读的方式打开文件,
for line in f: #每次读取文件的一行内容
print(line)
f.close()
#向文件中写入信息
f=open(filePath, "a") #这里有两种方式:第一种是以w的形式,它写入时将会清空以前的数据然后再写入数据,第二种是以a的形式,它以追加的形式写入数据
f.write("我开始向文件中写入信息
")
f.writelines("我已经向文件写入了信息")
f.close()
- 2022-03-02 22:46:33下载
- 积分:1
-
it can help you know C++ souce program quckily
it can help you know C++ souce program quckily
- 2023-02-19 23:40:03下载
- 积分:1
-
设计语言教科书和编译教科书的有关知识,并增加了一些有关汇编 层体系结构的材料,以满足没学过计算机组织的学生们的需要...
设计语言教科书和编译教科书的有关知识,并增加了一些有关汇编 层体系结构的材料,以满足没学过计算机组织的学生们的需要-Language textbooks and textbooks compiled the relevant knowledge, and an increase of some of the compilation of the material layer architecture to meet the needs of organizations never learned the computer needs of students
- 2022-02-13 19:43:01下载
- 积分:1
-
This is an animation procedures, functions and from the main movement, color, ac...
这是一个动画程序,主要功能有往返运动、变色,并伴随音乐。是我汇编语言的课程设计,里面有文档说明和程序源代码以及可执行程序!-This is an animation procedures, functions and from the main movement, color, accompanied by music. I compiled language curriculum design, with a description and documentation procedures for the source code and executable programs!
- 2022-02-07 21:58:26下载
- 积分:1
-
embedded_systems_development_topics_uml_modeling.rar,使用UML对嵌入式…
Embedded_systems_development_topics_UML_Modeling.rar,使用UML对嵌入式系统软件进行开发技术-Embedded_systems_development_topics_UML_Modeling.rar, the use of UML for embedded system software development technology
- 2023-01-07 17:00:03下载
- 积分:1
-
P1口LED灯实现各种渐变效果,有真正的流水灯程序!!1
P1口LED灯实现各种渐变效果,有真正的流水灯程序!!1-P1 port LED lamps to achieve a variety of gradient effects, there is a real water light program! ! 1
- 2022-02-26 14:38:28下载
- 积分:1
-
16550串口com口文件收发与计时
从输入文件如in.txt读取数据,经com1端口发送(自发自收),收到的内容存入输出文件如out.txt。
在按键后启动发送,并开始计时,发送完毕后,结束计时,并显示发送所花时间。
- 2023-08-27 22:20:03下载
- 积分:1
-
模型参考自适应程序。用于无速度传感器,做矢量控制
模型参考自适应程序。用于无速度传感器,做矢量控制-matlab
- 2022-01-26 02:24:52下载
- 积分:1
-
lcd1602,简单的液晶显示程序
lcd1602,简单的液晶显示程序,我用的是51单片机,将程序下载到单片机上,上电成功后,液晶屏就会自动显示提前设定好的要显示的内容,要想设定显示内容,只需在编程里将输出内容改成要输出的内容就可,超级简单,绝对可以用,
- 2022-04-28 19:44:28下载
- 积分:1