摘要: d 月中的某一天。一位数的日期没有前导零。 dd 月中的某一天。一位数的日期有一个前导零。 ddd 周中某天的缩写名称,在 AbbreviatedDayNames 中定义。 dddd 周中某天的完整名称,在 DayNames 中定义。 M 月份数字。一位数的月份没有前导零。 MM 月份数字。一位数的 阅读全文
posted @ 2021-11-03 17:53 Ellie_Auto 阅读(2077) 评论(0) 推荐(0) 编辑
摘要: 一、With语句是什么? 有一些任务,可能事先需要设置,事后做清理工作。对于这种场景,Python的with语句提供了一种非常方便的处理方式。一个很好的例子是文件处理,你需要获取一个文件句柄,从文件中读取数据,然后关闭文件句柄。 如果不用with语句,代码如下: 这里有两个问题: 一是可能忘记关闭文 阅读全文
posted @ 2019-10-16 15:18 Ellie_Auto 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 2.1. Python3中六个标准的基本数据类型: Number(数字) String(字符串) Sets(集合) Tuple(元组) List(列表) Dictionary(字典) Number(数字) String(字符串) Sets(集合) Tuple(元组) List(列表) Diction 阅读全文
posted @ 2019-10-16 14:34 Ellie_Auto 阅读(202) 评论(0) 推荐(0) 编辑
摘要: The status code is a 3-digit number: 1xx (Informational): Request received, server is continuing the process. 2xx (Success): The request was successfu 阅读全文
posted @ 2019-10-14 17:20 Ellie_Auto 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 用户操作浏览器访问,浏览器向服务器发出一个 HTTP 请求; 服务器接收到 HTTP 请求,Web Server 进行相应的初步处理,使用服务器脚本生成页面; 服务器脚本(利用Web Framework)调用本地和客户端传来的数据,生成页面; Web Server 将生成的页面作为 HTTP 响应的 阅读全文
posted @ 2019-10-14 15:52 Ellie_Auto 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1. /* xxxx */表示多行注释,双斜杠开始表示单行注释。多行注释的快捷键: 先选中多行代码,然后按下ctrl+/就可以把选中的多行代码给注释掉。 阅读全文
posted @ 2019-03-15 17:53 Ellie_Auto 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 先拜领路人 https://blog.csdn.net/u011541946/article/category/6951961/3? 一、安装JDK 1. 下载 www.java.com JDK是Java Development Kit的缩写,中文的意思就是java开发工具包;JRE是Java Ru 阅读全文
posted @ 2019-03-15 17:35 Ellie_Auto 阅读(201) 评论(0) 推荐(0) 编辑
摘要: An open protocol to allow the creation and consumption of queryable and interoperable RESTful APIs in a simple and standard way. 开放数据协议(OData)是一个查询和更新 阅读全文
posted @ 2017-06-16 14:38 Ellie_Auto 阅读(8981) 评论(1) 推荐(1) 编辑
摘要: 首先,URI,是uniform resource identifier,统一资源标识符,用来唯一的标识一个资源。而URL是uniform resource locator,统一资源定位器,它是一种具体的URI,即URL可以用来标识一个资源,而且还指明了如何locate这个资源。而URN,unifor 阅读全文
posted @ 2017-06-16 14:13 Ellie_Auto 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1. Download and setup Jenkins URL: https://jenkins.io/download/ After correct JDK and environment variable setting, use command "java -jar jenkins.war 阅读全文
posted @ 2017-06-12 17:34 Ellie_Auto 阅读(159) 评论(0) 推荐(0) 编辑