摘要: 引用位置: <html> <head> ... </head> <body> <script> source code </script> </body> <html> <script>属性: type:无用 src:链接外部javascript程序 新语句: alert("hello world! 阅读全文
posted @ 2019-07-30 23:38 不懂技术 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 使用软件 PyInstaller(http://www.pyinstaller.org) 安装方法 执行命令 附录 详细的pyinstaller使用手册:https://pyinstaller.readthedocs.io/en/stable/ 阅读全文
posted @ 2019-05-24 15:55 不懂技术 阅读(1631) 评论(0) 推荐(0) 编辑
摘要: 切片 list_name[start_position:end_position:step] 例: numbers = [1,2,3,4,5] numbers[0:5] == numbers[0:] == numbers[:] == numbers numbers[::-1] #=> 5,4,3,2 阅读全文
posted @ 2018-10-22 14:24 不懂技术 阅读(237) 评论(0) 推荐(0) 编辑
摘要: import openpyxl #引入整个库,调用对应时使用openpyxl.xxx的形式 from openpyxl import Workbook #引入Workbook对象,调用Workbook新建工作簿 from openpyxl import load_workbook #引入load_w 阅读全文
posted @ 2018-09-30 15:20 不懂技术 阅读(870) 评论(0) 推荐(0) 编辑
摘要: # automate_task for excelfrom openpyxl.styles import colorsfrom openpyxl.styles import Font,Colorfrom openpyxl import stylesfrom openpyxl import load_ 阅读全文
posted @ 2018-05-23 02:12 不懂技术 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 编译流程 预编译(preprocess)→编译(compilation)→汇编(assembly)→链接(linking) 实例: 1)相关文件 main.c - 源代码 main.s - 汇编代码 main.o - 二进制文件(执行不可) main - 二进制文件(可执行) 2)源代码 3)预编译 阅读全文
posted @ 2017-10-16 20:35 不懂技术 阅读(232) 评论(1) 推荐(0) 编辑