1.取过去具体时间的方法: 代码如下: #!/usr/bin/python import time #取一天前 […]
Continue reading作者:test31297505
python时间戳与格式化时间的转化实现代码
python 里面与时间有关的模块主要是 time 和 datetime 如果想获取系统当前时间戳:time. […]
Continue readingpython连接mysql数据库的正确姿势
python 数据库接口支持非常多的数据库,你可以选择适合你项目的数据库: gadfly msql mysql […]
Continue reading在python中处理字符串之isdecimal()方法的使用
isdecimal()方法检查字符串是否仅由十进制字符组成。此方法只存在于unicode对象。 注意:要定义一 […]
Continue readingpython基础学习代码之文件和输入输出
import os ls = os.linesep def func1(): filename = raw_i […]
Continue readingpython基础学习代码之条件和循环
def func1(): alist = [‘cathy’,’terry& […]
Continue readingpythonfabric实现远程部署
python fabric实现远程部署 需求描述 在多人协同开发项目的过程中,几乎每天我们都要提交代码到git […]
Continue readingpythondatetime时间格式化去掉前导0
python时间格式化的时候,去掉前导0的: dt = datetime.now() print dt.str […]
Continue reading更改ubuntu默认python版本的两种方法python
你可以按照以下方法使用 ls 命令来查看你的系统中都有那些 python 的二进制文件可供使用。 $ ls / […]
Continue readingubuntu下安装python多版本的方法及注意事项
今天一不小心又把ubuntu系统给完坏了,因为我把python3卸载了,然后就。。。好了,不废话了,接下来就说 […]
Continue readingpython简单实现获取当前时间
说起计算机中的时间,还有一些比较有意思的事,比如我们经常听到的unix时间戳,utc时间,格林威治时间等,从表 […]
Continue readingpythonparamiko实现ssh远程访问的方法
安装paramiko后,看下面例子: 代码如下: import paramiko #设置ssh连接的远程主机地 […]
Continue readingpython基础学习代码之错误和异常
def func1(): try: return float(‘abc’) excep […]
Continue readingubuntu系统下python链接mysql数据库的方法
进入root 权限下 apt-get install mysql-server apt-get install […]
Continue readingpython开发如何在ubuntu15.10上配置vim
1,安装vim,你可以使用ubuntu 自带的apt-get 工具安装。 apt-get install vi […]
Continue reading