上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 79 下一页
摘要: # 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 木子欢儿 阅读(654) 评论(0) 推荐(0) 编辑
摘要: 以下是小黑宇宙收集的一些采集接口,我自己也在用,用来搭建一个影视站是绰绰有余了,现在分享出来做个记录 。因为影视资源站的不稳定,经常会换域名换接口之类的,如果下面接口失效了,可以在评论区留言,我会去验证看看。 采集接口 # 百度云资源 https://api.apibdzy.com/api.php/ 阅读全文
posted @ 2022-04-24 13:05 木子欢儿 阅读(1902) 评论(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 木子欢儿 阅读(417) 评论(0) 推荐(0) 编辑
摘要: names.txt 小A同学 小B同学 小C同学 小D同学 小E同学 小F同学 小G同学 小H同学 小I同学 CallNameDemo.java package LearnJava12; import java.io.BufferedReader; import java.io.FileNotFou 阅读全文
posted @ 2022-04-22 11:15 木子欢儿 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 集合到文件 package LearnJava12; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; public cl 阅读全文
posted @ 2022-04-22 11:04 木子欢儿 阅读(55) 评论(0) 推荐(0) 编辑
摘要: <!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-20 21:18 木子欢儿 阅读(102) 评论(0) 推荐(0) 编辑
摘要: <!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-20 20:48 木子欢儿 阅读(81) 评论(0) 推荐(0) 编辑
摘要: package Demo4; import java.io.*; public class CopyMp4Demo { public static void main(String[] args) throws IOException { // 记录开始时间 long startTime = Sys 阅读全文
posted @ 2022-04-20 20:05 木子欢儿 阅读(195) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class CopyPn 阅读全文
posted @ 2022-04-19 20:38 木子欢儿 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 79 下一页