摘要: ``` Sub 読み込む() Dim result As Long Dim dialog As FileDialog Set dialog = Application.FileDialog(msoFileDialogOpen) dialog.ButtonName = "開く" result = dialog.Show If result = -1 T... 阅读全文
posted @ 2019-02-10 20:52 姜文文 阅读(3245) 评论(0) 推荐(0)
摘要: ``` #!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = 'jiangwenwen' # 从文件中按行读取数据 file = open("D:\坚果云\我的坚果云\\2019年计划.txt") while 1: lines = file.readlines(100000) if not lines: ... 阅读全文
posted @ 2019-02-10 19:10 姜文文 阅读(5471) 评论(0) 推荐(0)
摘要: ``` !/usr/bin/env python3 coding: utf 8 __author__ = 'jiangwenwen' import itchat from itchat.content import import time import re import os msg_inform 阅读全文
posted @ 2019-02-10 17:10 姜文文 阅读(813) 评论(0) 推荐(0)