-
声音处理声音处理的声音处理声音
声音处理~ 声音处理~ -voice handle voice processing ~ ~ ~ voice processing voice-processing voice processing
- 2023-05-21 06:20:03下载
- 积分:1
-
tenets of several computer chip interface code
几个微机原理的芯片接口代码-tenets of several computer chip interface code
- 2022-02-19 22:02:12下载
- 积分:1
-
汇编语言的课件,经典的汇编课件,老师使用了10年。
汇编语言的课件,经典的汇编课件,老师使用了10年。-PPT
- 2022-11-29 04:45:04下载
- 积分:1
-
这是一个显示“中国北京”字样的程序,按“q”键退出。
这是一个显示“中国北京”字样的程序,按“q”键退出。-This is a show
- 2022-02-21 06:18:05下载
- 积分:1
-
查看DOS版本
查看dos版本号-View dos version
- 2023-01-26 19:05:03下载
- 积分:1
-
8255的汇编程序,各种工作方式尽有,是初学者学习的好帮手,也是利用8255扩展IO的普遍方法,只用改下地址直接拿去用就行...
8255的汇编程序,各种工作方式尽有,是初学者学习的好帮手,也是利用8255扩展IO的普遍方法,只用改下地址直接拿去用就行-8255 compilation of procedures, a variety of working methods have to do is a good helper for beginners to learn, but also the use of 8255 to expand the universal method of IO only change taken directly under the address used on the line
- 2022-04-08 17:38:18下载
- 积分:1
-
也是一个打字联系的程序 与以前的那个做了改动
测试通过
masm6.0 编译成功
生成exe文件可以运行...
也是一个打字联系的程序 与以前的那个做了改动
测试通过
masm6.0 编译成功
生成exe文件可以运行-Typing is a procedure associated with the previous changes that have done a successful test masm6.0 compiler generated exe file can run
- 2023-02-21 08:50:03下载
- 积分:1
-
这是一个dos下的时钟驻留程序
这是一个dos下的时钟驻留程序-This is a dos clock presence under the procedures
- 2022-02-07 01:19:36下载
- 积分:1
-
双字节转BCD码
双字节转BCD码-two-bit BCD switch
- 2022-02-12 20:56:10下载
- 积分: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