Python
文章平均质量分 83
greenapple_shan
这个作者很懒,什么都没留下…
展开
-
Python 常见语法错误
1. SyntaxError: 'return' outside function 一般是由于缩进不对引起的,比如tab 和空格混合使用原创 2015-10-05 15:02:53 · 2615 阅读 · 0 评论 -
python json 编码
# -*- coding=utf-8 -*- import os import json class info: def __init__(self): self.year = 2014 self.version = '1.0' self.description = 'This is stable 1.0 version of the原创 2016-12-08 16:55:13 · 552 阅读 · 0 评论 -
python anaconda mkl
Anaconda 2.5 Release - now with MKL Optimizations https://www.continuum.io/blog/developer-blog/anaconda-25-release-now-mkl-optimizations原创 2016-04-25 19:53:49 · 3144 阅读 · 0 评论 -
Python XML解析
Python XML解析http://www.runoob.com/python/python-xml.html 什么是XML? XML 指可扩展标记语言(eXtensible Markup Language)。 你可以通过本站学习XML教程 XML 被设计用来传输和存储数据。 XML是一套定义语义标记的规则,这些标记将文档分成许多部件并对这些部件加以标识。 它也转载 2016-02-25 20:03:05 · 686 阅读 · 0 评论 -
Python OS 文件操作模块常用函数
我们经常会与文件和目录打交道,对于这些操作python提供了一个os模块,里面包含了很多操作文件和目录的函数。全部函数可以用help(os)或是dir(os)查看其用法。 常用的函数如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16转载 2016-03-19 22:47:07 · 878 阅读 · 0 评论 -
python中%r和%s的区别
%r用rper()方法处理对象 %s用str()方法处理对象 有些情况下,两者处理的结果是一样的,比如说处理int型对象。 例一: [python] view plaincopy print "I am %d years old." % 22 print "I am %s years old." % 22 print转载 2015-11-27 22:31:17 · 1477 阅读 · 0 评论 -
python seek()
1、seek函数 [plain] view plaincopyprint? file.seek(off, whence=0):从文件中移动off个操作标记(文件指针),正往结束方向移动,负往开始方向移动。如果设定了whence参数,就以whence设定的起始位为准,0代表从头开始,1代表当前位置,2代表文件最末尾位置。原创 2015-11-28 12:06:36 · 1366 阅读 · 0 评论 -
python中读写文件及中文编码处理方法
python中读写文件及中文编码处理方法 一、打开文件 代码如下: >>> f = open("d:\test.txt", "w") 说明: 第一个参数是文件名称,包括路径;第二个参数是打开的模式mode 'r':只读(缺省。如果文件不存在,则抛出错误) 'w':只写(如果文件不存在,则自动创建文件) 'a':附加到文件末尾 'r+':转载 2016-01-15 17:20:46 · 734 阅读 · 0 评论 -
python subprocess 读取进程logging info ( Run subprocess and print output to logging )
I am looking for the way to call shell scripts from python and write their stdout and stderr to file using logging. Here is my code: import logging import tempfile import shlex import os def run_she原创 2016-12-29 20:23:22 · 2750 阅读 · 0 评论