-
auto
2019-08-27 08:03:04
python
1596°
20
python3.6×××1、基础信息-版本信息-ScientificLinuxrelease7.6(Nitrogen)-win10linux子系统-当前目录[root@SKY-20181201MWD~]#pwd/root[root@SKY-20181201MWD~]#lsPython-3.6.0Python-3.6.0.tgzanaconda-ks.cfgepel-release-latest-
-
auto
2019-08-27 08:03:04
python
1358°
20
变量的作用:Variablesareusedtostoreinformationtobereferencedandmanipulatedinacomputerprogram.Theyalsoprovideawayoflabelingdatawithadescriptivename,soourprogramscanbeunderstoodmoreclearlybythereaderandoursel
-
auto
2019-08-27 08:03:04
python
1532°
20
python celery
-
auto
2019-08-27 08:03:04
python
1738°
20
在mingw下用python再调用 gcc编译程序,出现找不到-mno-cygwin选项错误
是要修改distutils\cygwinccompiler.py,去掉里面的-mno-cygwin选项
-
auto
2019-08-27 08:03:04
python
1726°
20
#/usr/bin/envpython
#-*-coding:utf-8-*-
#Author='Jun'
importos
importsys
importtime
defremovefiles(beftime,defalutpath='.'):
&n
-
auto
2019-08-27 08:03:04
python
1602°
20
算术运算符运算符描述实例+加-两个对象相加a+b输出结果30-减-得到负数或是一个数减去另一个数a-b输出结果-10*乘-两个数相乘或是返回一个被重复若干次的字符串a*b输出结果200/除-x除以yb/a输出结果2%取模-返回除法的余数b%a输出结果0**幂-返回x的y次幂a**b为10的20次方,输出结果100000000000000000000//取整除-返回商的整数部分9//2输出结果4,9
-
auto
2019-08-27 08:03:04
python
1682°
20
错误信息如下:[root@bjzw-mcu01-x86p-app01 ~]# yum -y updateThere was a problem importing one of the Python modulesrequired to run yum. The error leading to this problem was: No module named yumPl
-
auto
2019-08-27 08:03:04
python
2474°
20
importctypes
importos
lpBuffer=ctypes.create_string_buffer(78)
ctypes.windll.kernel32.GetLogicalDriveStringsA(ctypes.sizeof(lpBuffer),lpBuffer)
vol=lpBuffer.
-
auto
2019-08-27 08:03:04
python
1455°
20
题目:Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators. The valid operators are+,-and*.
-
auto
2019-08-27 08:03:04
python
1692°
20
Python如何用dom模块生成XML文件呢?主要方法三点:首先、生成XML节点(node)createElement("node_name")然后、给节点添加属性值(Attribute)node.setAttribute("att_name", "arr_value")最后、节点的标签值(data)createTextNode("node_value")其中第1、3点在创建完节点(节点值)之后,
-
auto
2019-08-27 08:03:04
python
1640°
20
官方模块说明:https://docs.python.org/2/library/getopt.html#module-getopt shell中几乎所有的命令输入的时候都可以携带合适的参数来扩展其功能,例如:ls -l,cp -f,mkdir -p,ping -c 10等。 前段时间看到同事写了个添加IP的shell脚本,里面使用了高大上的ge
-
auto
2019-08-27 08:03:04
python
1704°
20
importxlsxwriter
workbook=xlsxwriter.Workbook('chart.xlsx')
sheet1=workbook.add_worksheet('chart')
bold=workbook.add_format()
bold.set_bold()
title=['kemu','ke1'
-
auto
2019-08-27 08:03:04
python
1414°
20
最近在看python网络方面的知识,发现使用socket编写一些小的服务器真是太方便了,简单几行代码就能实现一个服务器,真是高大上呀,废话少说,直接上代码:SSH服务器端代码:#!/usr/bin/envpython
#coding:utf-8
#file:sshserver
importsocket, 
-
auto
2019-08-27 08:03:04
python
1684°
20
仿照《how to use linux epoll with python》写的一个聊天室程序,比较简单。
python版本:2.7.3
#!/usr/bin/python#-*-coding:utf-8-*-importsocket,select&nbs
-
auto
2019-08-27 08:03:04
python
1371°
20
单台登录:importparamikossh=paramiko.SSHClient()key=paramiko.AutoAddPolicy()ssh.set_missing_host_key_policy(key)ssh.connect('127.0.0.1',22,'user','passwd',timeout=5)stdin,stdout,stderr=ssh.exec_command('ls
-
auto
2019-08-27 08:03:04
python
1612°
20
python模块的安装步骤
-
auto
2019-08-27 08:02:51
python
1508°
20
Help on built-in function execfile in module __builtin__:execfile(...) execfile(filename[, globals[, locals]]) Read and execute a Python script from a file
-
auto
2019-08-27 08:02:51
python
1504°
20
Python实验:消除缺失的文件编号
-
auto
2019-08-27 08:02:51
python
1526°
20
下面简单写下实现方式,具体代码不会全部贴出来。需要使用的py库有下面几个importurllib2
importsocket
frommultiprocessingimportPoolurllib2用于请求网页socket用于限制网络请求超时pool用于设置进程池,这个在数据量很大的情况下采用pool远比使用process要好很多,后者会
-
auto
2019-08-27 08:02:51
python
1532°
20
我在http://jlnsqt.blog.51cto.com/2212965/1405052这篇博客中讲述了匹配URL的一个算法,因项目需要将其封装为动态库,并让python组调用,所以研究了一下ctypes,感觉超级棒,必须记录下来。 首先介绍一下我的动态库接口。 动态库结构体: type