码迷,mamicode.com
首页 >  
搜索关键字:runtimeerror: could not open display    ( 38110个结果
简单的python爬虫图片获取
# 图片爬取 import re import urllib import urllib.request def gethtml(url): page=urllib.request.urlopen(url) html=page.read() return html def getimg(html): ...
分类:编程语言   时间:2021-03-16 14:08:34    阅读次数:0
程序的修改!
一、 系统环境: Windows xp以上版本,电脑 二、 设计内容: 程序一共定义五个类,继承关系如图所示 首先我进行了主菜单主函数,会员登录,书记信息查看,购书。又在这些主菜单上进行相对应的子菜单的函数。主菜单如下: #include<string> #include<iostream> #in ...
分类:其他好文   时间:2021-03-16 14:02:51    阅读次数:0
OSI Model
https://www.imperva.com/learn/application-security/osi-model/ What Is the OSI Model The Open Systems Interconnection (OSI) model describes seven layer ...
分类:其他好文   时间:2021-03-16 14:01:01    阅读次数:0
文件操作
# 1. 文件操作# 一个函数: open()函数,创建一个文件对象# 三个方法:read/write/close # 2.open()函数# 默认以只读方式r打开文件,并返回文件对象# open(filename, mode) filename文件名 mode访问模式# 2.1 打开文件# fil ...
分类:其他好文   时间:2021-03-16 12:01:10    阅读次数:0
通过VS Code实现markdown文件的预览
通过VS Code来实时预览markdown文件的效果,操作如下 新建一个文本文件,然后将其后缀名改成.md 然后用VS Code打开文件 打开命令行,在上菜单栏的view->command palette 或者用快捷键Ctrl+Shift+p 在命令行中输入Markdown: Open Previ ...
分类:其他好文   时间:2021-03-15 11:31:18    阅读次数:0
代数系列——阿贝尔变换的具体运用(1)
#代数系列——阿贝尔变换的具体运用(1) ##阿贝尔部分求和 \(\sum_{i=1}^{n}{a_{i}b{j}=b_{n}S{n}+\sum_{k=1}^{n-1}{S_n(b_k-b_{k-1})}}\) 证明如下: 由$a_k=S_k-S_$,$k=1,2,\cdots,n$得知 $$\be ...
分类:其他好文   时间:2021-03-15 11:15:00    阅读次数:0
地址经纬度解析
python\小脚本\地址经纬度解析.py # -*- coding: utf-8 -*- """ Created on Thu Nov 24 10:10:13 2016 @author: Acer """ # -*- coding: utf-8 -*- #import sys, urllib, u ...
分类:其他好文   时间:2021-03-15 11:02:26    阅读次数:0
CSS浮动
5 浮动 标准文档流 块级元素:独占一行 h1~h6 p div 列表。。。 行内元素:不独占一行 span a img strong 行内元素可以被包含在块级元素中,反之,则不可以~ 5.2 display 却可以这样做 <!DOCTYPE html> <html lang="en"> <head ...
分类:Web程序   时间:2021-03-15 10:58:26    阅读次数:0
4-文件与os
文件备份与重命名 # 2种方式打开文件、备份文件、 import os # 打开文件 class FileOpen: @staticmethod def file_open1(file): fp = open(file, "w+", encoding="utf-8") # 无需flush,因为clo ...
分类:其他好文   时间:2021-03-15 10:54:22    阅读次数:0
ESLint is disabled since its execution has not been approved or denied yet
VS Code 装好ESLint 插件报黄线的问题,具体解决方法如下所示: ESLint is disabled since its execution has not been approved or denied yet. Use the light bulb menu to open the ...
分类:移动开发   时间:2021-03-15 10:51:43    阅读次数:0
38110条   上一页 1 ... 31 32 33 34 35 ... 3811 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!