文件备份与重命名 # 2种方式打开文件、备份文件、 import os # 打开文件 class FileOpen: @staticmethod def file_open1(file): fp = open(file, "w+", encoding="utf-8") # 无需flush,因为clo ...
分类:
其他好文 时间:
2021-03-15 10:54:22
阅读次数:
0
public class Test { public static void main(String[] arg0){ String s = "asd....dfa...d.fee.c"; System.out.println(new Test().getReverseStr(s)); } publ ...
分类:
其他好文 时间:
2021-03-15 10:53:11
阅读次数:
0
在main.js中加上以下代码 // 添加请求拦截器 axios.interceptors.request.use(config => { // 在发送请求之前做些什么 //判断是否存在token,如果存在将每个页面header都添加token //if中的值为登陆时存入vuex中的token值 / ...
分类:
其他好文 时间:
2021-03-15 10:48:06
阅读次数:
0
gnu http://www.gnu.org/software/binutils/ The GNU Binutils are a collection of binary tools. The main ones are: ld - the GNU linker. as - the GNU asse ...
分类:
其他好文 时间:
2021-03-11 20:36:58
阅读次数:
0
功能模块分析 1.首页(菜单功能)2.添加学生信息3.删除学生信息4.显示学生信息5.修改学生信息6.按照学生年龄排序 代码如下: def main(): while True: printmenu() #打印菜单 number = int(input("请输入功能对应的数字:")) if numb ...
分类:
编程语言 时间:
2021-03-11 20:36:31
阅读次数:
0
The land is for sale in CyberCity, and is divided into several pieces. Here it is assumed that each piece of land has exactly two neighboring pieces, ...
分类:
其他好文 时间:
2021-03-11 19:32:24
阅读次数:
0
public class Demo04 { public static void main(String[] args) { //低 >高 //byte、short、char->int->long->float->double int i = 128; //强制转换,(类型)变量名 高-->低 by ...
分类:
编程语言 时间:
2021-03-11 19:31:35
阅读次数:
0
java5引入了一种主要用于**数组和集合**的增强for循环 格式 for(声明语句 : 表达式){ //代码语句 } 一般而言用于数组的遍历会更加简便 //增强for循环 public class A7 { public static void main(String[] args) { int ...
分类:
其他好文 时间:
2021-03-10 13:41:12
阅读次数:
0
//while循环 public class A4 { /*计算0到100的奇数和偶数的和 用while或for循环输出1-1000之间能被5整除的数,并且每行输出三个 打印九九乘法表 */ public static void main(String[] args) { //计算0到100的奇数和 ...
分类:
其他好文 时间:
2021-03-10 13:26:39
阅读次数:
0
//用while或for循环输出1-1000之间能被5整除的数,并且每行输出三个 public class A5 { public static void main(String[] args) { for (int i = 1; i <= 1000; i++) { if (i%5==0){ Sys ...
分类:
其他好文 时间:
2021-03-10 13:26:22
阅读次数:
0