Fork me on github
摘要: // 图片生成base64格式 function handleFileChange(event) { const file = event.target.files[0] if (file) { const reader = new FileReader() reader.onload = (e) 阅读全文
posted @ 2024-11-15 16:21 我の前端日记 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 利用map函数 # coding=utf-8 # 输入一个正整数 x = int(input()) # 请在此添加代码,将输入的一个正整数分解质因数 ########## Begin ########## N = x n = x k=2 result=[] while(k<=x):#初值k为2,x为 阅读全文
posted @ 2024-10-25 20:12 我の前端日记 阅读(24) 评论(0) 推荐(0) 编辑
摘要: python 运行此文件,跳转到index.html from flask import Flask,render_template,request,jsonify,json,url_for,redirect app = Flask(__name__) @app.route('/', methods 阅读全文
posted @ 2024-10-23 16:54 我の前端日记 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1.连接 import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017/") print(myclient.list_database_names()) 2.查询 查询全部 for row in myAuthors. 阅读全文
posted @ 2024-10-23 16:42 我の前端日记 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 函数参数 参数顺序:必选参数、默认参数、可变参数和关键字参数 可变参数:不确定参数个数 这些可变参数在函数调用时自动组装为一个tuple。*args表示的是可变参数,*args接收的是一个元组 # 参数numbers是可变参数,表示输入的参数个数可以为任意值 def plus(*numbers): 阅读全文
posted @ 2024-10-22 16:36 我の前端日记 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 已下载python 1.下载anaconda https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/?C=M&O=D 2.配置环境变量 3.Anaconda默认环境保存路径和下载源修改 输入 envs_dirs: - F:\Anaconda3\e 阅读全文
posted @ 2024-10-18 21:20 我の前端日记 阅读(7) 评论(0) 推荐(0) 编辑
摘要: (90条消息) git官网下载太慢解决方法_王佳斌的博客-CSDN博客 阅读全文
posted @ 2023-07-20 15:43 我の前端日记 阅读(15) 评论(0) 推荐(0) 编辑
摘要: win+r 打开cmdsysdm.cpl配置环境变量 阅读全文
posted @ 2023-07-20 15:14 我の前端日记 阅读(13) 评论(0) 推荐(0) 编辑
摘要: (99+ 封私信 / 83 条消息) 阿米洛键盘的capslock和ctry键交换了怎么调回来? - 知乎 (zhihu.com) 阅读全文
posted @ 2023-07-19 17:49 我の前端日记 阅读(550) 评论(0) 推荐(0) 编辑
摘要: (90条消息) m3u8,rtsp,rtmp,flv,mp4直播流在线测试地址(2022年8月)_m3u8测试地址_ChangYan.的博客-CSDN博客 阅读全文
posted @ 2023-07-19 17:48 我の前端日记 阅读(2097) 评论(0) 推荐(0) 编辑
Copyright © 2021 LinCangHai
Powered by .NET 5.0 on Kubernetes