摘要: package com.company; public class Data02 { public static void main(String[] args) { System.out.println(1024);//这是一个整数,默认就是Int类型 System.out.println(3.4 阅读全文
posted @ 2022-03-10 23:12 NiceTwocu 阅读(17) 评论(0) 推荐(0) 编辑
摘要: package com.company; public class Main {//定义一个类 public static void main(String[] args) {//定义一个主函数 // write your code here System.out.println("Hello ba 阅读全文
posted @ 2022-03-10 22:14 NiceTwocu 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 使用pip安装requests报错Could not fetch URL https://pypi.org/simple/selenium/: There was a problem confirming the ss 解决办法 python easy_install -U pip#更新pip版本 阅读全文
posted @ 2022-01-26 00:32 NiceTwocu 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 参考小菠萝笔记 Python - 常用内置变量 - 小菠萝测试笔记 - 博客园 (cnblogs.com) 阅读全文
posted @ 2022-01-13 16:37 NiceTwocu 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 请参考小菠萝笔记 https://www.cnblogs.com/poloyy/p/12525020.html 阅读全文
posted @ 2022-01-13 16:22 NiceTwocu 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Jenkins 关闭和重启的实现方式 关闭jenkins ####只需要在访问jenkins服务器的网址url地址后加上exit。例如我jenkins的地址http://localhost:8080/ , 那么我只需要在浏览器地址栏上敲下 http://localhost:8080/exit 网址就 阅读全文
posted @ 2022-01-12 23:34 NiceTwocu 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 中文显示 在可选插件中搜local,安装插件重启服务即可 阅读全文
posted @ 2022-01-12 23:32 NiceTwocu 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 一、Jenkins访问地址 http://192.168.31.240:8080/ 二、安装jenkins 首先需要安装依赖环境jdk1.8的版本 配置jdk环境变量可以参考下面的文章 https://www.cnblogs.com/cy-xt/p/15786656.html 2. 下载jenkin 阅读全文
posted @ 2022-01-12 23:28 NiceTwocu 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 变量名只能包含、字母、数字、下划线。变量名可以字母或者下划线开头,但不能以数字开头,例如,可将变量名命名为tuboshu_1,但不能将其命名为1_tuboshu。 变量名不能包含空格,但可以是用下划线来分割其中的单词。例如,变量名getting_tuboshu可行,但变量名getting tubos 阅读全文
posted @ 2022-01-12 16:33 NiceTwocu 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Python 是如何执行的?执行顺序是怎么样? 至上而下,逐行执行 什么是 Python 脚本的执行入口 类比:进入一栋大楼肯定有个大门入口,赛车要进入赛道也一定有一个入口 所以,执行程序,也需要一个入口 一般称代码执行的入口叫做主函数(main 函数) 执行入口(主函数)的写法 if __name 阅读全文
posted @ 2022-01-12 12:53 NiceTwocu 阅读(161) 评论(0) 推荐(0) 编辑