分析下request获取的网页中文乱码问题 r = requests.get(“http://www.baidu.com“) **r.text返回的是Unicode型的数据。使用r.content返回的是bytes型的数据。也就是说,如果你想取文本,可以通过r.text。如果想取图片,文件,则可以通 ...
分类:
编程语言 时间:
2020-09-04 17:25:39
阅读次数:
53
例4.1 在主函数中调用其他函数 public class Demo4_1 { public static void main(String[] args) { printstar(); print_message(); printstar(); } private static void prin ...
分类:
编程语言 时间:
2020-09-03 16:59:54
阅读次数:
47
错误信息 data = pd.read_csv("C:\Users\王永飞\Desktop\code\012-2-数据分析与可视化\004-pandas\文档\movie_data.csv") # SyntaxError: (unicode error) 'unicodeescape' codec ...
分类:
其他好文 时间:
2020-08-17 16:55:31
阅读次数:
63
正则表达式可以包含一些可选标志修饰符来控制匹配的模式。修饰符被指定为一个可选的标志。多个标志可以通过按位 OR(|) 它们来指定。如 re.I | re.M 被设置成 I 和 M 标志: 修饰符 描述 re.I 使匹配对大小写不敏感 re.L 做本地化识别(locale-aware)匹配 re.M ...
分类:
其他好文 时间:
2020-08-13 12:43:10
阅读次数:
72
""" A TestRunner for use with the Python unit testing framework. It generates a HTML report to show the result at a glance. The simplest way to use th ...
分类:
Web程序 时间:
2020-08-13 12:21:33
阅读次数:
72
import tensorflow as tf import numpy as np import matplotlib.pylab as plt plt.rcParams["font.family"] = 'SimHei' # 将字体改为中文 plt.rcParams['axes.unicode_ ...
分类:
其他好文 时间:
2020-08-09 13:05:56
阅读次数:
65
from sklearn import datasets import numpy as np import tensorflow as tf import pandas as pd from pandas import DataFrame from sklearn.datasets import ...
分类:
其他好文 时间:
2020-08-08 17:45:03
阅读次数:
85
将搜狗的scel文件转换成txt格式,从网站上copy的,但是忘记是哪个网站了。#!/bin/python # -*- coding: utf-8 -*- import struct import sys import binascii import pdb import os try: reloa ...
分类:
其他好文 时间:
2020-08-07 18:06:32
阅读次数:
85
一、Vim、Vi文本编辑器 1??:vi: Visual Interface,文本编辑器 2??:文本:ASCII, Unicode 3??:VIM - Vi IMproved 二、Vim、vi的特点 1??:vi/vim是一种纯文本编辑器,它不像word可以排版,可以调整字体大小,可以改变字体等等 ...
分类:
系统相关 时间:
2020-08-07 18:02:28
阅读次数:
68
安装 celery redis eventlet django_celery_beat(安装后数据库迁移) 1.项目目录创建celery.py # -*-coding:utf-8 -*- from __future__ import absolute_import, unicode_literals ...
分类:
其他好文 时间:
2020-08-06 13:14:06
阅读次数:
85