前言 python 相对导入与绝对导入,这两个概念是相对于包内导入而言的。包内导入即是包内的模块导入包内部的模 […]
Continue reading作者:test31297505
ubuntu12.0464位对python源代码编译详解
ubuntu下python源代码编译 环境: ubuntu 12.04 64位 liaops@ay130611 […]
Continue readingpython简单实现获取当前时间
说起计算机中的时间,还有一些比较有意思的事,比如我们经常听到的unix时间戳,utc时间,格林威治时间等,从表 […]
Continue readingpython基础学习代码之文件和输入输出
import os ls = os.linesep def func1(): filename = raw_i […]
Continue readingpython基础学习代码之函数和函数式编程
def func1(): print ‘hello world’ res = func […]
Continue readingpythonfabric实现远程操作和部署示例
近期接手越来越多的东西,发布和运维的工作相当机械,加上频率还蛮高,导致时间浪费还是优点多。修复bug什么的,测 […]
Continue readingpython基础学习代码之条件和循环
def func1(): alist = [‘cathy’,’terry& […]
Continue readingpython语法练习
#!/usr/bin/env python # -*- coding:utf8 -*- name = inpu […]
Continue readingpython实现插入排序算法
代码如下: #!/usr/bin/python def insert_sort(array): for i i […]
Continue readingpython基础学习代码之执行环境
class c(object): def __call__(self, *args, **kwargs): p […]
Continue readingpythonfabric实现远程部署
python fabric实现远程部署 需求描述 在多人协同开发项目的过程中,几乎每天我们都要提交代码到git […]
Continue readingpython时间戳与格式化时间的转化实现代码
python 里面与时间有关的模块主要是 time 和 datetime 如果想获取系统当前时间戳:time. […]
Continue readingpythondatetime时间格式化去掉前导0
python时间格式化的时候,去掉前导0的: dt = datetime.now() print dt.str […]
Continue readingpython时间操作例子和时间格式化参数小结
1.取过去具体时间的方法: 代码如下: #!/usr/bin/python import time #取一天前 […]
Continue readingpython时间处理datetime实例
同时,关于datetime也是简单介绍。因为有很多东西需要自己去使用,去查帮助才最有效。例子:计算上一个星期五 […]
Continue reading