摘要:
安装python3.7,安装成功后,在cmd窗口输入python检查是否安装成功,报错:无法启动此程序,因为计算机中丢失api-ms-win-crt-process-l1-1-0.dll 在网上查询了多种方法试过都未解决: 方法1:网上下载vc_redist.x64.exe ,安装后重启电脑,也未能 阅读全文
摘要:
#!python3.7 import requests,sys,time,logging,random from lxml import etree logging.basicConfig(level=logging.ERROR, format=' %(asctime)s - %(levelname)s: %(message)s') #DEBUG ERROR format显示格式可按自己喜好调整... 阅读全文
摘要:
调试过程将显示: 2019-03-15 14:17:01,538 - DEBUG: 程序现在开始! 2019-03-15 14:17:01,548 - DEBUG: 开始执行:factorial(5) 2019-03-15 14:17:01,551 - DEBUG: 此处【i】值是:0,【total 阅读全文
摘要:
#python3.7 ''' 功能:实现www.biqukan.com/1_1094/5403177.html小说下载为txtv1.0 ''' import requests,sys,time from lxml import etree ##0.获取所有章节url def get_url_list(catalog_url): res=requests.get(catalog_url) ... 阅读全文
摘要:
var n=1; if(n>1){ n=0; }else{ n++; } console.log(n); #输出结果:2 var n=1; n = n>1?0 : n++; console.log(n); #输出结果为:1 例子2: var n=1; if(n>1){ n=0; }else{ ++n; } console.log(n); #输出结果:2 ... 阅读全文
摘要:
new document 点我 阅读全文
摘要:
# -*- coding: utf-8 -*- """ Created on Wed May 9 14:12:25 2018 @author: JJ """ #12306账号 myuser="" mypasswd="" import urllib.request import re import ssl import urllib.parse import http.cookiejar imp... 阅读全文
该文被密码保护。 阅读全文
摘要:
数据库(右键打开位置,找到users点进去,第一个.db即文件列表,内含hd5),复制到同一目录: 阅读全文
摘要:
#!coding=utf-8 import requests import re import time import json from requests.packages.urllib3.exceptions import InsecureRequestWarning import pandas as pd requests.packages.urllib3.disable_warnings... 阅读全文