摘要: # 99乘法表# i = 1# j = 0# fa = ""# temfa = '{0} * {1} = {2}'# while i < 10:# j = 1# while j < i + 1:# if len(fa) > 0:# if j == i:# fa = fa + temfa.format 阅读全文
posted @ 2020-03-15 16:01 Sundance8866 阅读(202) 评论(0) 推荐(0) 编辑
摘要: ####################### 整理 ################# # 一、数字# int(..)# 二、字符串# replace/find/join/strip/startswith/split/upper/lower/format# tempalte = "i am {na 阅读全文
posted @ 2020-03-15 13:01 Sundance8866 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 在Scripting类库中有三个可以直接使用NEW关键字实例化的类,第一个就是常用的字典,第三个是FSO。 Dictionary Encoder FileSystemObject 一、FSO对象引用的方法: 前期绑定:先要引用类库文件scrrun.dll,写代码的时候有智能提示。如果程序发给别人用, 阅读全文
posted @ 2020-03-14 10:34 Sundance8866 阅读(2818) 评论(0) 推荐(0) 编辑
摘要: # 6 expandtabs,断句20, # test = "username\temail\tpassword\nlaiying\tying@q.com\t123\nlaiying\tying@q.com\t123\nlaiying\tying@q.com\t123" # v = test.exp 阅读全文
posted @ 2020-03-12 21:34 Sundance8866 阅读(171) 评论(0) 推荐(0) 编辑
摘要: python开发IDE: pycharm、eclipse # 专业版 # 不要汉化 pycharm: 选中后,ctrl+?,整体注释 布尔值: 真 True 假 False if True: pass while True: pass 1、运算符 结果是值 算数运算 a = 10 * 10 赋值运算 阅读全文
posted @ 2020-03-11 21:02 Sundance8866 阅读(183) 评论(0) 推荐(0) 编辑
摘要: https://www.lucktang.com/2743.html 原帖 以DSM5.2 5644-4为例,本人不对你的数据负责,请你谨慎选择,也许还有其它更好的方法。黑群晖引导盘一般是写入一个独立的个U盘或硬盘作为启动盘,与黑群晖系统盘是分开的,这样非常浪费,还引起因USB问题无法休眠等问题,为 阅读全文
posted @ 2020-03-11 12:50 Sundance8866 阅读(1910) 评论(0) 推荐(0) 编辑
摘要: 模具 No. English Chinese No. English Chinese 1 gate 浇口套 41 riser bore 水塔 2 direct gate 直浇口 42 cross hole 水路 3 film gate 侧浇口 43 seal ring 密封圈 4 tunnel ga 阅读全文
posted @ 2020-03-10 09:29 Sundance8866 阅读(1533) 评论(1) 推荐(0) 编辑
摘要: https://www.cnblogs.com/JBLi/p/10615999.html 不能包含:< > / \ | : * ? windows中,文件名(包括扩展名)可高达 255 个字符。文件名可以包含除 ? “ ”/ \ < > * | : 之外的大多数字符;保留文件名的大小写;文件名不区分 阅读全文
posted @ 2020-03-10 07:54 Sundance8866 阅读(2954) 评论(0) 推荐(0) 编辑
摘要: '在第8列中不为空的清空下,从第一列中的超链接中,去目录,放在对应第二列中Sub ChangeDocumentLinkToFolderLink() On Error Resume Next Dim a As String With ActiveSheet rowmax = .Cells(104857 阅读全文
posted @ 2020-03-09 10:34 Sundance8866 阅读(214) 评论(0) 推荐(0) 编辑
摘要: http://club.excelhome.net/thread-876039-1-1.html 在VBA编辑器中输入中文成了乱码 1.工具→选项→编辑器格式 窗口,其中字体选项改正为中文字体即可。 2.將代碼拷入2010EXCEL,利用“審閱”里的繁簡轉換工具,再將代碼拷到VBE 3.按照如下步骤 阅读全文
posted @ 2020-03-08 18:55 Sundance8866 阅读(1590) 评论(0) 推荐(0) 编辑