E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
__future__
[Canvas绘图] 第26节 生成表格
本节目标:(1)绘制一张Python标准库模块索引表实现步骤:(1)我有下面这样一堆字符串,我想把它们放到表格中"__
future__
","__main__","_dummy_thread","_thread
mwsister
·
2015-12-13 11:00
nagios 监控windows 网卡流量
from __
future__
import division import time,wmi,win32com from optparse import OptionParser parser =
jastme
·
2015-12-07 10:00
nagios 监控windows 磁盘 IO
from __
future__
import division import time,wmi,win32com from optparse import OptionParser parser =
jastme
·
2015-12-07 09:00
python 系统监控
/usr/bin/python2.7 # -*- coding:utf-8 -*- #检查网卡流量 from __
future__
import division import commands from
eddy_linux
·
2015-11-27 14:00
把MAP文件导入IDA Pro的小程序
不悦,顺手写了一段把map文件转换成IDA Pro的idc脚本的Python小程序: # -*- coding:utf-8 -*- from __
future
·
2015-11-13 09:09
map
Python基础教程读书笔记(第9章—第10章:魔法方法、属性和迭代器;充电时刻)
第九章:魔法方法、属性和迭代器 1:魔法方法:比如 __
future__
2:构造方法介绍的第一个魔法是构造方法。
·
2015-11-13 09:34
python
python设置windows桌面壁纸
# -*- coding: UTF-8 -*- from __
future__
import unicode_literals import Image import
·
2015-11-13 07:16
windows
python设置windows桌面壁纸
# -*- coding: UTF-8 -*- from __
future__
import unicode_literals import Image import datetime import
·
2015-11-13 05:08
windows
__
future__
模块
1 作用 允许低版本的python使用高版本python的特性。 2 内容 'absolute_import' 'all_feature_names' 'division':定义整数除法/,地板除用//。老版本/表示地板除。 'generators' 'nested_scopes' 'print_function':禁用print "abc" 'unicode_
·
2015-11-12 18:19
future
Python-if-elif-else语句
/bin/env python # coding=gb2312 # -*- coding: gb2312 -*- from __
future__
import division #### if-else
·
2015-11-12 10:45
python
精确除法:from __
future__
import division
运行结果为0,为取结果的整数部分 如果用1.0/2或1/2.0运行结果为0.5,按照浮点数的位数取结果 但是实际应用中我们需要取除法的精确结果,我们就可以在运行前引入:from __
future
·
2015-11-11 15:14
import
【C010】Python - 基础教程学习(一)
第一章:基础知识 >>> from __
future__
import division #实现斜杠/为除,而不是整除 >>> 1 // 2
·
2015-11-11 12:49
python
python使用__
future__
要“试用”某一新的特性,就可以通过导入__
future__
模块的某些功能来实现。
·
2015-11-11 01:41
python
【python cookbook】python检查一个字符串是文本还是二进制
/usr/bin/python 2 # -*- coding: utf-8 -*- 3 4 #检查字符串是文本还是二进制 5 6 from __
future__
import division
·
2015-11-09 12:50
python
Python mssql数据库操作
/usr/bin/env python 2 # coding=utf-8 3 from __
future__
·
2015-11-07 13:45
python
《python基础教程》笔记之 基础知识
数字相关 在Python程序前加上 from __
future__
import division 或者在解释器里面直接执行它,或者通过命令行运行Python时使用命令开关-Qnew
·
2015-11-07 12:02
python
Python-if-elif-else语句
/bin/env python # coding=gb2312 # -*- coding: gb2312 -*- from __
future__
import division #### if-else
·
2015-11-03 21:17
python
【Python】一、除法问题及基本操作(逻辑与,if替代switch)及支持中文打印
1.查看版本 C:\Users\XXX>python -V Python 2.7.1 2.除法问题(不要整除) from __
future__
import division tmp
·
2015-11-02 18:09
python
imgur.py
/usr/bin/env python # -*- coding: utf-8 -*- from __
future__
import with_statement import sys import
·
2015-11-02 17:52
img
Python module重复载入的问题
测试环境准备: 1、在site-packages下新建一个用于测试的包,包含如下文件 2、文件的内容: a.py # - * - coding :utf - 8 - * - from __
future
·
2015-11-02 13:13
python
Python天天美味(10) - 除法小技巧
from __
future__
import division print 7 / 3 输出结果: 2.3333333333
·
2015-11-02 12:46
python
Python Rapid GUI Programming 第二篇。 30行写一个更奇葩的计算器。Python 基础教程
from __
future__
import division #精确除法 import sys from math import *
·
2015-11-02 12:33
programming
Modified Kaprekar Numbers
Link: https://www.hackerrank.com/challenges/kaprekar-numbers 1 from __
future__
import print_function
·
2015-10-31 14:55
number
Manasa and Stones
1 from __
future__
import print_function 2 3 4 def main(): 5 t = int(raw_input()) 6
·
2015-10-31 14:48
man
XiaoKL学Python(C)__
future__
__
future__
in Python 1. from __
future__
import xxxx 这是为了在低版本的python中使用可能在某个高版本python中成为语言标准的特性
·
2015-10-31 09:18
python
Python.tornado.2.tornado.options
记录Tornado-4.0.2源码的阅读,学习,分析 options.py 1. imports 部分 1.1 __
future__
1 from __
future__
import absolute_import
·
2015-10-31 09:17
tornado
使用from __
future__
import unicode_literals时要注意的问题
add by zhj: 在Python中有些库的接口要求参数必须是str类型字符串,有些接口要求参数必须是unicode类型字符串。对于str类型的字符串,调用len()和遍历时,其实都是以字节为单位的,这个太坑爹了,同一个字符使用不同的编码格式,长度往往是不同的。对unicode类型的字符串调用len()和遍历才是以字符为单位,这是我们所要的。另外,Django,Django REST fram
·
2015-10-30 14:32
unicode
Pyhon中的除法
执行from __
future__
import division 指令就可以做到这一点。 &g
·
2015-10-27 16:38
on
scrapy cmdline实现
#scrapy/cmdline.py 1 from __
future__
import with_statement 2 3 import sys 4 import os
·
2015-10-27 15:10
scrapy
Pyqt 编写的俄罗斯方块
/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 from __
future__
import print_function 4 from
·
2015-10-27 13:23
qt
Pyqt 时时CPU使用情况
借鉴代码来自:https://github.com/hgoldfish/quickpanel 实现代码: 1 # -*- coding:utf-8 -*- 2 from __
future
·
2015-10-27 13:21
cpu
平均要取多少个(0,1)中的随机数才能让和超过1
先用程序估算一下 from __
future__
import division import random N = 1000000 sums = 0 for i in range(N):
·
2015-10-27 13:04
随机数
Matplotlib初体验
1 from __
future__
import division 2 import nump
·
2015-10-23 08:00
mat
Python tricks(4) -- with statement
from __
future__
import with_statement 举例简单说明一下没有with和有with的代码区别 try: dict_file
·
2015-10-21 12:45
statement
1、Python基础知识
输出print “houkai”,3.0版本后print修改为函数,print(‘houkai’) 数学运算:默认整数整除1/2=0而1.0/2=0.5,可以使用from __
future__
import
·
2015-10-21 12:32
python
计算整数n的b进制展开式
给出任意一个十进制整数n,计算它的b进制展开式 from __
future__
import divisionimport mathdef baseb(b,q): aList=[] while
·
2015-10-21 11:53
计算
python中魔法属性和魔法方法
1.魔法方法|魔法属性 在python中,有的名称会在前面和后面都加上两个下划线,例如__
future__
、__init__、__del__以及__new__等等,这些特殊的名称,在python中就称为魔法方法或魔法属性
wangjianno2
·
2015-10-11 18:00
简单计算器
/usr/bin/env python from __
future__
import division import sys def add(a,b): print a+b def subtra
wjcaiyf
·
2015-09-02 15:15
python
calc
nagios监控mysql tps---check_mysql_tps.py
/usr/bin/python2.7 # -*- coding:utf-8 -*- from __
future__
import division from optparse import OptionParser
jastme
·
2015-08-25 11:00
mysql
nagios
TPS
python 一些有趣的模块
/usr/bin/env python#coding:utf8from __
future__
import divisionimport sys,timefrom progressbar
jinlinger
·
2015-08-13 21:42
python
sh
脚本
python 一些有趣的模块
/usr/bin/env python #coding:utf8 from __
future__
import division import sys,time from
jinlinger
·
2015-08-13 21:42
python
sh
python 一些有趣的模块
/usr/bin/env python #coding:utf8 from __
future__
import division import sys,time from
jinlinger
·
2015-08-13 21:42
python
sh
pycurl 异步请求
/usr/bin/python # coding:utf8 from __
future__
import division import pycurl import simplejson as json
Art_Hero
·
2015-08-05 19:43
python
pycurl
pycurl 异步请求
/usr/bin/python # coding:utf8 from __
future__
import division import pycurl import simplejson as json
Art_Hero
·
2015-08-05 19:43
python
pycurl
pycurl 异步请求
/usr/bin/python# coding:utf8from __
future__
import divisionimport pycurlimport simplejson as jsontry:
Art_Hero
·
2015-08-05 19:43
python
pycurl
python2.7 print不换行的三种方法
sys.stdout.write("home") sys.stdout.flush() 方法二:函数方式调用print函数 from __
future
heipark
·
2015-07-30 10:00
python2.7
from __
future__
import absolute_import
from__future__importabsolute_importpython模块中的相对导入,绝对导入相对导入:在不指明package名的情况下导入自己这个package的模块,比如一个package下有test1.py和test2.py两个文件,在test1.py里from.importtest2即是相对导入test2.py。绝对导入:指明顶层package名。比如importpaname
xinxing__8185
·
2015-07-12 14:00
python
iotop源码分析一
#iotop是一个python编写的命令行下图形展示磁盘占用率的工具,学习python,看看他的源码,记录一下 #主程序文件 iotop #__
future__
可调用新版本的一些模块使用 from
wr1985624
·
2015-06-27 15:48
future
import
except
Launch
iotop源码分析一
#iotop是一个python编写的命令行下图形展示磁盘占用率的工具,学习python,看看他的源码,记录一下#主程序文件 iotop#__future__ 可调用新版本的一些模块使用from __
future
wr1985624
·
2015-06-27 15:48
except
import
future
python
iotop源码分析一
#iotop是一个python编写的命令行下图形展示磁盘占用率的工具,学习python,看看他的源码,记录一下 #主程序文件 iotop #__
future__
可调用新版本的一些模块使用 from
wr1985624
·
2015-06-27 15:48
future
import
except
Launch
上一页
1
2
3
4
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他