上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 79 下一页
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2022-04-27 20:56 木子欢儿 阅读(73) 评论(0) 推荐(0) 编辑
摘要: game.txt count=0 GameNumber.java package LearnJava15; import java.util.Random; import java.util.Scanner; public class GuessNumber { private GuessNumbe 阅读全文
posted @ 2022-04-27 20:25 木子欢儿 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Student.java package LearnJava15; import java.io.Serializable; public class Student implements Serializable { private String name; private int age; pu 阅读全文
posted @ 2022-04-27 11:31 木子欢儿 阅读(33) 评论(0) 推荐(0) 编辑
摘要: package LearnJava15; import java.io.*; public class CopyFileDemo { public static void main(String[] args) throws IOException { BufferedReader br=new B 阅读全文
posted @ 2022-04-27 11:05 木子欢儿 阅读(33) 评论(0) 推荐(0) 编辑
摘要: package LearnJava15; import java.io.*; public class CopyFoldersDemo { public static void main(String[] args) throws IOException { // 数据源 File srcFile= 阅读全文
posted @ 2022-04-26 19:12 木子欢儿 阅读(30) 评论(0) 推荐(0) 编辑
摘要: package LearnJava15; import java.io.*; public class CopyFolderDemo { public static void main(String[] args) throws IOException { // 创建数据源目录对象 File src 阅读全文
posted @ 2022-04-26 19:11 木子欢儿 阅读(27) 评论(0) 推荐(0) 编辑
摘要: # FilesBatchRename.py # 导入os库 import os # 图片存放的路径 path = r"D:/temp" # 遍历更改文件名 num = 1 for file in os.listdir(path): os.rename(os.path.join(path,file), 阅读全文
posted @ 2022-04-26 16:05 木子欢儿 阅读(38) 评论(0) 推荐(0) 编辑
摘要: python版本: 3.8 问题:在python运行代码: import time print(time.clock()) 出现错误 : AttributeError module 'time' has no attribute 'clock' 原因 : Python time.clock在Pyth 阅读全文
posted @ 2022-04-25 09:55 木子欢儿 阅读(650) 评论(0) 推荐(0) 编辑
摘要: 以下是小黑宇宙收集的一些采集接口,我自己也在用,用来搭建一个影视站是绰绰有余了,现在分享出来做个记录 。因为影视资源站的不稳定,经常会换域名换接口之类的,如果下面接口失效了,可以在评论区留言,我会去验证看看。 采集接口 # 百度云资源 https://api.apibdzy.com/api.php/ 阅读全文
posted @ 2022-04-24 13:05 木子欢儿 阅读(1818) 评论(0) 推荐(0) 编辑
摘要: 在运行命令:python wsgi.py报错: Traceback (most recent call last): File "wsgi.py", line 5, in <module> app = create_app() File "C:\Users\kegek\Desktop\flask_t 阅读全文
posted @ 2022-04-23 21:53 木子欢儿 阅读(415) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 79 下一页