-
汇编语言与设计 我们可以这样的做一些有用的汇编程序
汇编语言与设计 我们可以这样的做一些有用的汇编程序-assembly language and design we could do some useful compilation proce
- 2022-01-22 02:53:18下载
- 积分:1
-
A Newton interpolation matlab m
一个牛顿插值的matlab的m文件-A Newton interpolation matlab m-file
- 2022-01-26 07:23:21下载
- 积分:1
-
进一步实现了VC++实现计算器功能,分为普通型和科学型
进一步实现了VC++实现计算器功能,分为普通型和科学型-Further realization of the VC++ to achieve calculator functions are divided into common type and science-based
- 2023-03-13 01:30:04下载
- 积分:1
-
用汇编编写的密码锁,proteus仿真,程序,原理图全套,希望对需要的人有用...
用汇编编写的密码锁,proteus仿真,程序,原理图全套,希望对需要的人有用-Compilation prepared by using locks, proteus simulation, procedures, a full set of schematic diagram, in the hope that those who need it useful
- 2022-05-09 00:58:59下载
- 积分:1
-
描述了用汇编语言对dm512信号接受与处理的过程,实现对led灯光控制。...
描述了用汇编语言对dm512信号接受与处理的过程,实现对led灯光控制。-Describes the assembly language used on the dm512 signal acceptance and treatment process, led lighting control to realize.
- 2022-01-26 04:59:42下载
- 积分:1
-
Archive decompression there can not be password, easy to use upload data to writ...
压缩包解压时不能有密码,使用方便请认真书写上传资料的详细功能-Archive decompression there can not be password, easy to use upload data to write carefully detailed feature
- 2022-04-24 01:36:41下载
- 积分:1
-
EMC 78P156 控制蓝牙芯片,实现车载蓝牙电话通讯.
EMC 78P156 控制蓝牙芯片,实现车载蓝牙电话通讯.-EMC 78P156 control of Bluetooth chips, realize Car Bluetooth telephone communications.
- 2022-07-07 20:55:40下载
- 积分:1
-
51 single
51单片机矩阵键盘扫描扫描之逐行扫描法.asm程序-51 single-chip scan matrix keyboard scanning method of progressive scan. Asm program
- 2022-01-26 08:31:50下载
- 积分:1
-
汇编方面的CRC
汇编方面的CRC-32一个完整的Win32Asm例子-Compilation of CRC-32 a complete example Win32Asm
- 2022-07-09 11:27:06下载
- 积分: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