https://stackoverflow.com/questions/10240694/java-socket-api-how-to-tell-if-a-connection-has-been-closed http://fanyi.baidu.com/#en/zh/ http://blog.qi ...
分类:
Web程序 时间:
2018-02-05 16:00:28
阅读次数:
699
Girls are clever and bright. In HDU every girl like math. Every girl like to solve math problem! Now tell you two nonnegative integer a and b. Find th ...
分类:
其他好文 时间:
2018-02-03 16:13:44
阅读次数:
138
Given three integers A, B and C in [ 263, 263], you are supposed to tell whether A+B C. Input Specification: The first line of the input gives the pos ...
分类:
其他好文 时间:
2018-01-28 12:43:10
阅读次数:
145
初次安装git需要配置用户名和邮箱,否则git会提示:please tell me who you are. 你需要运行命令来配置你的用户名和邮箱: $ git config --global user.name "superGG1990" $ git config --global user.em ...
分类:
其他好文 时间:
2018-01-27 19:14:16
阅读次数:
218
文件的打开方式 同时打开两个文件 文件操作的几种方法 open ,read,close,with open readlines 就像read没有参数时一样,readlines可以按照行的方式把整个文件中的内容进行一次性读取,并且返回的是一个列表,其中每一行的数据为一个元素 readline tell ...
分类:
其他好文 时间:
2018-01-17 20:15:42
阅读次数:
173
1 Could you tell me more about your idea? 2 Could I hear more about your idea? 3 Could you expain your idea in more detail? 4 Tell me more about your ...
分类:
其他好文 时间:
2018-01-12 13:19:19
阅读次数:
108
第一步:建立git仓库 cd到你的本地项目根目录下,执行git命令 第二步:将项目的所有文件添加到仓库中 如果想添加某个特定的文件,只需把.换成特定的文件名即可 第三步:将add的文件commit到仓库 此时若出现 please tell me who you are,需要执行如下命令: 第四步:去 ...
分类:
Web程序 时间:
2017-12-29 16:56:01
阅读次数:
303
文件操作的复习 读:read:一次性的读 、 readlines:一次性的读 、readline:一行一行的读 、缺点:不知道在那结束 视频、图片用rb 属于bytes类型,是按照字节读 for循环(最好的) 写:write 光标:就是文件指针 seek:指定光标移动到某个位置 tell:获取光标当 ...
分类:
编程语言 时间:
2017-12-26 17:50:19
阅读次数:
169
今天是在老男孩学习的第9天,大致内容整理如下: 昨日总结及补充: 读: read() 一次性读 readline() 一行一行读,本身无结束 readlines() 一次性读完后生成列表 写: write 需要换行则加上 \n 光标:文件指针 seek 指定光标移动的位置 tell 获取光标位置 t ...
分类:
其他好文 时间:
2017-12-26 17:46:06
阅读次数:
170
打开文件 操作文件 1.读 2.写 3.追加 4.其他操作 ① seek() 移动光标指针位置 seek有三种移动方式0,1,2,其中1和2必须在b模式下进行,但无论哪种模式,都是以bytes为单位移动的 ② tell() 返回当前指针所在的位置 tell对于英文字符就是占一个,中文字符占三个,参数 ...
分类:
编程语言 时间:
2017-12-26 16:10:40
阅读次数:
144