上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
2020年9月23日
摘要: Python GUI tkinter窗口视窗学习3 # test9 import tkinter as tk window = tk.Tk() window.title('my test9') window.geometry('700x400') l = tk.Label(window,bg = ' 阅读全文
posted @ 2020-09-23 19:38 My_serendipity 阅读(113) 评论(0) 推荐(0) 编辑
2020年9月22日
摘要: Python GUI tkinter窗口视窗学习2 test4 import tkinter as tk # 实例化object,建立窗口 window = tk.Tk() window.title('my test') # 设置窗口的大小 window.geometry('500x300') # 阅读全文
posted @ 2020-09-22 22:21 My_serendipity 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Python GUI tkinter窗口视窗 Python 提供了多个图形开发界面的库,几个常用 Python GUI 库如下: Tkinter: Tkinter 模块(Tk 接口)是 Python 的标准 Tk GUI 工具包的接口 .Tk 和 Tkinter 可以在大多数的 Unix 平台下使用 阅读全文
posted @ 2020-09-22 20:54 My_serendipity 阅读(141) 评论(0) 推荐(0) 编辑
2020年9月21日
摘要: websocket原生开发聊天室 chat.html <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'/> <meta name="viewport" content = "width=divice-width,initial 阅读全文
posted @ 2020-09-21 19:51 My_serendipity 阅读(176) 评论(0) 推荐(0) 编辑
摘要: node.js + websocket 官方教程是用express搭的服务器,教程其实很清楚,但是不知道为什么我报错了,好像是引入那个juery包失败 安装npm install nodejs-websocket --save 直接在visual stdio终端执行就可以 chat.html <!D 阅读全文
posted @ 2020-09-21 18:48 My_serendipity 阅读(121) 评论(0) 推荐(0) 编辑
2020年9月20日
摘要: 爬虫 scrapy框架 首先需要创建一个工程 终端输入命令:scrapy startproject xxx 在spiders子目录中创建一个爬虫文件 运行命令 scrapy crawl first 阅读全文
posted @ 2020-09-20 16:46 My_serendipity 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 微信小程序获取用户信息和openid 1.获取用户信息 微信改变了获取用户信息的方法 wxml: <button class="cu-btn bg-Olive shadow" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 登 录</bu 阅读全文
posted @ 2020-09-20 11:28 My_serendipity 阅读(409) 评论(0) 推荐(0) 编辑
2020年9月17日
摘要: 微信小程序前端传数据给后端 现在已经连接到php文件了 但是php操纵的数据库和网页没有反应 先粘一下代码: wxml: <!--pages/sql/sql.wxml--> <form bindsubmit="formSubmit" bindreset="formReset"> <view clas 阅读全文
posted @ 2020-09-17 22:51 My_serendipity 阅读(3938) 评论(0) 推荐(0) 编辑
摘要: 微信小程序点击改变页面颜色 用了colorui 组件库 wxml <view class="page" style="background-color: {{backgroundColor}}"> <view class="cu-bar bg-white solid-bottom"> <view c 阅读全文
posted @ 2020-09-17 21:32 My_serendipity 阅读(3995) 评论(0) 推荐(0) 编辑
摘要: 2020第十三届全国大学生信息安全创新实践大赛 z3 http://ethereal.prohitime.top/demo/ 其实根据题目名字的提示(直接百度这道题的题目,会发现z3是一种解方程的工具) // local variable allocation has failed, the out 阅读全文
posted @ 2020-09-17 14:48 My_serendipity 阅读(590) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页