- 博客(17)
- 资源 (1)
- 收藏
- 关注
原创 uniapp开发使用uni.createInnerAudioContext()在微信小程序调试时src无法设值的问题解决
uniapp开发使用uni.createInnerAudioContext()在微信小程序调试时src无法设值的问题解决
2024-01-13 14:00:05 1112
原创 Python使用selenium进行自动化测试报错解决-安装对应版本的Chrome driver
通过Python使用selenium打开谷歌浏览器进行自动化测试及爬虫时报错:selenium.common.exceptions.SessionNotCreatedException: Message: session not created原因之一:谷歌浏览器版本对应的Chrome driver版本不一致
2024-01-11 15:47:59 526
原创 使用SpringBoot+Vue+快递100API搭建一个快递查询网站
对接快递100API,使用springboot+vue+element-plus搭建一个前后端分离的快递查询网站项目
2023-01-29 15:15:46 5581
原创 Java数组-随机验证码
要求:随机产生一个长度为4位的验证码,包含大小写字母以及数字public class RandomCode { public static void main(String[] args) { char[] arr=new char[62]; for(int i=48;i<58;i++) { char j=(char)i; arr[i-48]=j; } for(int i=65;i<91;i++) { char j=(char)i; arr[i-5.
2021-08-11 13:15:31 260
原创 JAVA编写一个文本编辑程序TextEdit.java
JAVA编写一个文本编辑程序TextEdit.java*1.首先编出界面部分setLayout(null);定义可自定义组件位置;setBounds(x,y,width,height)定义组件的界限(绝对位置)import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.io.*;import javax.swing.*;import javax.swing.event.Documen
2020-11-21 11:52:13 691
原创 使用python打造一个中英互译软件(基于有道翻译)
(本博客简洁明了,适合小白入门)首先明确整体构架:1.爬虫部分2.界面部分3.打包涵盖的库:import urllib.requestimport urllib.parseimport jsonimport tkinter as tkimport tkinter.messagebox先确定爬取的URL地址:url = 'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rul.
2020-06-22 11:36:48 1601 2
原创 用python实现猜数小游戏(界面)
简洁易上手话不多说,直接上代码:import tkinter as tkimport tkinter.messageboximport randomimport regame = tk.Tk() game.geometry('400x200')game.title('猜数字小游戏')a = random.randint(1, 100)label1 = tk.Label(game, fg ='Teal',text="系统随机生成1
2020-05-09 00:21:05 1790 1
原创 使用python简单实现《西游记》文本分析,通过词频对比探索西游记的主角
使用jieba模块简单统计西游记词频,并进行同义词处理(如合并 行者,大圣为悟空)及排除词处理。import jiebawith open('西游记.txt','r',encoding='utf-8') as f: content=f.read() words=jieba.lcut(content)counts={}#同义词处理for word in words: if len(word)==1: continue elif word=.
2020-05-09 00:10:29 7577 2
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人