码迷,mamicode.com
首页 >  
搜索关键字:lines    ( 2570个结果
魔力Python——我踩过的各种坑
1.函数与内置函数 filter: 2.迭代器,生成器与装饰器 装饰器的典型错误: 3.正则表达式与re模块 4.面对对象 5.异常 6. 网络编程 7.MySQL 解决方案:把变量加上引号变为字符串即可. 8.Django 解决方案:忘配置与settings同级的__init__的文件了.写如下: ...
分类:编程语言   时间:2019-10-24 11:39:39    阅读次数:70
matplotlib学习
1.matplotlib基础用法 import matplotlib.pyplot as plt import numpy as np 基础用法 x = np.linspace( 1,1,100) y = 2 x + 1 plt.plot(x,y) plt.show() 2.figure图像 fig ...
分类:其他好文   时间:2019-10-23 13:25:45    阅读次数:52
容器下载的是centos8的镜像,scp出现packet_write_wait: Connection to **** port 22: Broken pipe 问题解决
解决方案:在~/.ssh目录新建文件config vi ~/.ssh/config #Added lines to fix. Host * IPQoS lowdelay throughput #end of new file edit到这里如果不更改权限会出现一个问题Bad owner or per ...
分类:其他好文   时间:2019-10-23 09:24:59    阅读次数:334
Secret Poems
Secret Poems "原题链接" The Yongzheng Emperor (13 December 1678 – 8 October 1735), was the fifth emperor of the Qing dynasty of China. He was a very hard ...
分类:其他好文   时间:2019-10-22 01:10:35    阅读次数:115
python 执行系统命令模块比较
python 执行系统命令模块比较 1、os.system模块 仅仅在子终端运行命令,返回状态码,0为成功,其他为失败,但是不返回执行结果 如果再命令行下执行,结果直接打印出来 2、os.popen 该方法执行命令后也返回执行结果 例: 好处在于:将返回的结果赋于一变量,便于程序的处理。 3、sub ...
分类:编程语言   时间:2019-10-21 00:00:22    阅读次数:132
《算法图解》全本PDF下载附百度云链接
作者使用Python和图画来解释算法,找了好久才找到PDF版本,末尾附百度云链接~ 作者〔美〕Aditya Bhargava 译者袁国忠 类别 出版 / 非虚构 出版社人民邮电出版社 / 2017-03 提供方图灵社区 字数约 72,000 字 ISBN9787115447630 作品简介 作品简介 ...
分类:编程语言   时间:2019-10-20 16:14:45    阅读次数:23474
CPU 负荷过重时邮件报警
首先介绍一下 命令的使用方法, top 程序提供了运行系统的动态实时视图, 它可以显示系统摘要信息以及当前线程或进程的列表 Global defaults A Alt display Off (full screen) d Delay time 1.5 seconds H Threads mode ...
分类:其他好文   时间:2019-10-18 20:37:12    阅读次数:102
3 Ways to Write Text to a File in Python
https://cmdlinetips.com/2012/09/three-ways-to-write-text-to-a-file-in-python/ ...
分类:编程语言   时间:2019-10-18 16:14:37    阅读次数:108
[CF815C] Karen and Supermarket
问题描述 On the way home, Karen decided to stop by the supermarket to buy some groceries. She needs to buy a lot of goods, but since she is a student her ...
分类:其他好文   时间:2019-10-17 01:24:06    阅读次数:65
Container with most water
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endp ...
分类:其他好文   时间:2019-10-16 21:41:10    阅读次数:75
2570条   上一页 1 ... 28 29 30 31 32 ... 257 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!