e媒网络

一切皆可能 e媒网络 http://www.eMay.net

博客园 首页 新随笔 联系 订阅 管理

07 2020 档案

摘要:1.用Python做网络爬虫,一般需要哪两个步骤?而且需要哪些库的辅助?这些库有什么作用?参考教材P2622.使用字典格式,对一个学生的成绩进行文件读写?参考博客:https://www.cnblogs.com/exesoft/p/13354273.html 阅读全文
posted @ 2020-07-27 17:09 e媒网络技术团队 阅读(124) 评论(0) 推荐(0)

摘要:字典写入json文件中: import json stu_mark={} stu_mark["Name"]=input("Name=") stu_mark["English"]=float(input("English=")) stu_mark["Music"]=float(input("Music 阅读全文
posted @ 2020-07-21 11:52 e媒网络技术团队 阅读(136) 评论(0) 推荐(0)

摘要:import re from bs4 import BeautifulSoup htmlDoc='''<!DOCTYPE html><html><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edg 阅读全文
posted @ 2020-07-16 09:14 e媒网络技术团队 阅读(432) 评论(0) 推荐(0)

摘要:1.用Asp.net Form技术创建一个简单的加法应用。 前台代码: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="AddDemo.aspx.cs" Inherits="AddDemo" %> <!DOCTYPE html> <ht 阅读全文
posted @ 2020-07-13 11:22 e媒网络技术团队 阅读(421) 评论(0) 推荐(0)

摘要:use WebShowDBAlter go 1 declare @str nvarchar(50) select @str=DodgeRaterID from Student where ID='03' select dbo.Get_StrArrayStrOfIndex(@str,',',3) 2 阅读全文
posted @ 2020-07-10 17:23 e媒网络技术团队 阅读(245) 评论(0) 推荐(0)

摘要:可折叠A: <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css"> <script src="http:/ 阅读全文
posted @ 2020-07-07 18:14 e媒网络技术团队 阅读(193) 评论(0) 推荐(0)

摘要:前端参考代码: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org 阅读全文
posted @ 2020-07-05 14:03 e媒网络技术团队 阅读(205) 评论(0) 推荐(0)

摘要:第一步: 创建一个Html5文件: 第二步: 代码如下: import re from bs4 import BeautifulSoup htmlDoc='''<!DOCTYPE html><html><head><meta charset="utf-8"><meta http-equiv="X-U 阅读全文
posted @ 2020-07-03 15:40 e媒网络技术团队 阅读(1680) 评论(0) 推荐(0)