码迷,mamicode.com
首页 >  
搜索关键字:python    ( 135041个结果
cx_Oracle.DatabaseError: ORA-12541: TNS:no listener
问题:利用Python连接Oracle时报错,完整过程如下import cx_Oracleconn = cx_Oracle.connect('testma/dingjia@192.168.88.139:1521/orcl')Traceback (most recent call last): Fi....
分类:数据库   时间:2014-07-16 18:50:04    阅读次数:2108
Tornado/Python 学习笔记(一)
1.源代码下载及安装:http://www.tornadoweb.org/en/stable/2.python中xmlrpc库官方文档:https://docs.python.org/3/library/xmlrpc.html?highlight=xmlrpc3.xml介绍与学习:http://ww...
分类:编程语言   时间:2014-07-16 18:47:23    阅读次数:278
Tornado/Python 学习笔记(二)
部分ssrpc.py代码分析 -- 服务端: 1 #!/usr/bin/python3 2 3 from xmlrpc.client import Fault, dumps, loads 4 import sys 5 from socketserver import ForkingMixIn 6 ....
分类:编程语言   时间:2014-07-16 18:14:43    阅读次数:296
python中的各种排序
#encoding=utf-8import randomfrom copy import copy def directInsertSort(seq): """ 直接插入排序 """ size = len(seq) for i in range(1,size): t...
分类:编程语言   时间:2014-07-16 18:11:59    阅读次数:255
python中将字典转换成定义它的json字符串
Python的字典和JSON在表现形式上非常相似#这是Python中的一个字典 dic = { 'str': 'this is a string', 'list': [1, 2, 'a', 'b'], 'sub_dic': { 'sub_str': 'this is sub str', 'sub_l...
分类:编程语言   时间:2014-07-16 18:09:52    阅读次数:301
python 实现求和、计数、最大最小值、平均值、中位数、标准偏差、百分比。
import sys class Stats: def __init__(self, sequence): # sequence of numbers we will process # convert all items to floats for numeri...
分类:编程语言   时间:2014-07-16 18:06:48    阅读次数:257
python抓取网页
一 不需要登录的import urllib2content = urllib2.urlopen('http://XXXX').read() 二 使用代理import urllib2proxy_support = urllib2.ProxyHandler({'http':'http://XX.XX.....
分类:编程语言   时间:2014-07-16 17:58:39    阅读次数:226
《Python基础教程》第20章学习笔记
详见https://github.com/captainwong/instant_markup...
分类:编程语言   时间:2014-07-16 09:34:59    阅读次数:297
Ansible@一个高效的配置管理工具--Ansible configure management--翻译(十一)
无书面授权,请勿转载 第五章 自定义模块 Using a module Now that we have written our very first module for Ansible, we should give it a go in a playbook. Ansible looks at several places for its modules: first it looks ...
分类:其他好文   时间:2014-07-16 09:14:31    阅读次数:376
Python知识点: __import__
help(__import__)__import__(...) __import__(name, globals={}, locals={}, fromlist=[], level=-1) -> module 导入一个模块。 globals:决定上下文,不修改。 locals:当前未使用。 ...
分类:编程语言   时间:2014-07-16 00:48:27    阅读次数:302
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!