摘要: # -*- coding: utf-8 -*- # @Time : 2022/10/01 # @Author : chron # @FileName: hello_world.py # @Software: PyCharm # @E-mail : chron@foxmil.com from flas 阅读全文
posted @ 2022-10-01 03:30 chron 阅读(43) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- # @Time : 2022/10/01 # @Author : chron # @FileName: hello_world.py # @Software: PyCharm # @E-mail : chron@foxmil.com from flas 阅读全文
posted @ 2022-10-01 03:10 chron 阅读(68) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- # @Time : 2022/10/01 # @Author : chron # @FileName: hello_world.py # @Software: PyCharm # @E-mail : chron@foxmil.com from flas 阅读全文
posted @ 2022-10-01 02:56 chron 阅读(25) 评论(0) 推荐(0)
摘要: 苹果手机铁路12306提示环境异常 起因: 五一买车票回家,没有带身份证,申请临时身份证,查看乘车码等均失败 设备信息 手机设备信息:iPhone8 plus 系统版本:15.4.1 铁路12306版本:5.5.0.18 影响范围:iOS系统查看乘车码失败,申请临时身份证失败,退票失败,改签失败等 阅读全文
posted @ 2022-05-05 12:42 chron 阅读(484) 评论(0) 推荐(0)
摘要: docker安装Jenkins 启动Jenkins sudo systemctl start docker 拉取镜像Jenkins docker pull jenkins/jenkins:lts 创建Jenkins文件夹 mkdir -p /home/var/jenkins ##设置权限目录 cho 阅读全文
posted @ 2022-03-13 00:58 chron 阅读(78) 评论(0) 推荐(0)
摘要: 关键字驱动实现-框架思想 import json from requests import Session class Base(object): host = "https://www.shenzhuohl.com" Session = Session() def post(self, url, 阅读全文
posted @ 2022-03-02 10:18 chron 阅读(60) 评论(0) 推荐(0)
摘要: 初始模块与软件包 简介 对于初学者来说,通常只需要一个.py源码文件就可以应付各种范例的代码量。然而,实际的应用程序需要的代码量远比范例程序要多得多,只有一个.py源码文件来编写,势必会造成程序代码管理上的混乱。所以必须根据功能将程序代码划分到不同的模块(Module)中编写,对于功能相近或彼此辅助 阅读全文
posted @ 2021-08-11 22:31 chron 阅读(83) 评论(0) 推荐(0)
摘要: 编写Python源码 编写Python源码 我们总是要打开一个源码文件,正式的一点编写程序吧?在正式编程之前,请先确定自己是否可以看到文件拓展名。接着我们创建一个"文本文件" 也就是.txt文件,更改后缀名为.py。 以记事本打开我们创建的"hello.py"文件,写入内容print("Hello 阅读全文
posted @ 2021-08-08 20:47 chron 阅读(353) 评论(0) 推荐(0)
摘要: 从Hello World 开始 编写第一个程序 第一个显示"Hello World"的程序代码,我们在交互式模式下运行(也可以叫Python shell)。 C:\>Python Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [M 阅读全文
posted @ 2021-08-08 19:55 chron 阅读(42) 评论(0) 推荐(0)
摘要: python之禅 Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] Type 'copyright', 'credits' or 'license' for more infor 阅读全文
posted @ 2021-08-08 14:47 chron 阅读(48) 评论(0) 推荐(0)