Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test31297505

python简单格式化时间的方法【strftime函数】

20 6月01 1月 by test31297505

本文实例讲述了python简单格式化时间的方法,分享给大家供大家参考,具体如下: walker经常用到当前时间 […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu12.0464位对python源代码编译详解

20 6月01 1月 by test31297505

ubuntu下python源代码编译 环境: ubuntu 12.04 64位 liaops@ay130611 […]

Continue reading
Posted in 未分类 · Leave a comment

python语法练习

20 6月01 1月 by test31297505

#!/usr/bin/env python # -*- coding:utf8 -*- age = 26 fo […]

Continue reading
Posted in 未分类 · Leave a comment

pythonfabric实现远程部署

20 6月01 1月 by test31297505

python fabric实现远程部署 需求描述 在多人协同开发项目的过程中,几乎每天我们都要提交代码到git […]

Continue reading
Posted in 未分类 · Leave a comment

更改ubuntu默认python版本的两种方法python

20 6月01 1月 by test31297505

你可以按照以下方法使用 ls 命令来查看你的系统中都有那些 python 的二进制文件可供使用。 $ ls / […]

Continue reading
Posted in 未分类 · Leave a comment

python2.7基础教程之:模块

20 6月01 1月 by test31297505

.. _tut-modules: ************************ modules 模块 ** […]

Continue reading
Posted in 未分类 · Leave a comment

python对数据库操作

20 6月01 1月 by test31297505

windows下安装mysql-python 下载地址:https://pypi.python.org/pyp […]

Continue reading
Posted in 未分类 · Leave a comment

python连接mysql数据库的正确姿势

20 6月01 1月 by test31297505

python 数据库接口支持非常多的数据库,你可以选择适合你项目的数据库: gadfly msql mysql […]

Continue reading
Posted in 未分类 · Leave a comment

python基础学习代码之文件和输入输出

20 6月01 1月 by test31297505

import os ls = os.linesep def func1(): filename = raw_i […]

Continue reading
Posted in 未分类 · Leave a comment

pythonfabric实现远程部署

20 6月01 1月 by test31297505

python fabric实现远程部署 需求描述 在多人协同开发项目的过程中,几乎每天我们都要提交代码到git […]

Continue reading
Posted in 未分类 · Leave a comment

用python删除java文件头上版权信息的方法

20 6月01 1月 by test31297505

在使用他人代码时,为不保留文件头部版权信息,需要一个个删掉,费时费力, 写了个脚本,简单清除掉目录下所有的文件 […]

Continue reading
Posted in 未分类 · Leave a comment

使用pythondjango做网页

20 6月01 1月 by test31297505

1 、创建一个django项目使用django-admin.py startproject mydjangos […]

Continue reading
Posted in 未分类 · Leave a comment

【python教程】pythongui编程(tkinter)

20 6月01 1月 by test31297505

python gui编程(tkinter) python提供了多个图形开发界面的库,几个常用python gu […]

Continue reading
Posted in 未分类 · Leave a comment

pythongdal教程之:过滤器,简单的空间分析,函数和模块

20 6月01 1月 by test31297505

layer对象有一个方法叫setattributefilter()可以将layer中符合某一条件的featur […]

Continue reading
Posted in 未分类 · Leave a comment

python语法练习

20 6月01 1月 by test31297505

age = 26 count = 0 while count < 4: intput = int(input( […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu16.04lts中源码安装python3.6.0的方法教程

20 6月01 1月 by test31297505

前提 官网上提供了 mac 和 windows 上的安装包和 linux 上安装需要的源码。 下载地址如下: […]

Continue reading
Posted in 未分类 · Leave a comment

python简单实现获取当前时间

20 6月01 1月 by test31297505

说起计算机中的时间,还有一些比较有意思的事,比如我们经常听到的unix时间戳,utc时间,格林威治时间等,从表 […]

Continue reading
Posted in 未分类 · Leave a comment

python时间戳与格式化时间的转化实现代码

20 6月01 1月 by test31297505

python 里面与时间有关的模块主要是 time 和 datetime 如果想获取系统当前时间戳:time. […]

Continue reading
Posted in 未分类 · Leave a comment

pythonfabric实现远程操作和部署示例

20 6月01 1月 by test31297505

近期接手越来越多的东西,发布和运维的工作相当机械,加上频率还蛮高,导致时间浪费还是优点多。修复bug什么的,测 […]

Continue reading
Posted in 未分类 · Leave a comment

python基础学习代码之映像集合

20 6月01 1月 by test31297505

def func1(): dict1 = {} dict2 = {‘name’:&#8 […]

Continue reading
Posted in 未分类 · Leave a comment

python基础学习代码之执行环境

20 6月01 1月 by test31297505

class c(object): def __call__(self, *args, **kwargs): p […]

Continue reading
Posted in 未分类 · Leave a comment

浅析python内置字符串处理函数的使用方法

20 6月01 1月 by test31297505

一、lower():将大写字母全部转为小写字母。如: 代码如下: name=’g’b= […]

Continue reading
Posted in 未分类 · Leave a comment

python中操作mysql的pymysql模块详解

20 6月01 1月 by test31297505

前言 pymsql是python中操作mysql的模块,其使用方法和mysqldb几乎相同。但目前pymysq […]

Continue reading
Posted in 未分类 · Leave a comment

python类与继承讲解

20 6月01 1月 by test31297505

相对于c++的继承编写,python更简洁,而且效率也是很高的,下面编写一个简单python的继承例子。 cl […]

Continue reading
Posted in 未分类 · Leave a comment

【python教程】python元组

20 6月01 1月 by test31297505

python 元组 python的元组与列表类似,不同之处在于元组的元素不能修改。 元组使用小括号,列表使用方 […]

Continue reading
Posted in 未分类 · Leave a comment

python语法练习

20 6月01 1月 by test31297505

#!/usr/bin/env python # -*- coding:utf8 -*- age = int(i […]

Continue reading
Posted in 未分类 · Leave a comment

pythongdal教程之:地图代数与栅格数据的写入

20 6月01 1月 by test31297505

以计算ndvi为例: ndvi=(nir-red)/(nir+red) 其中nir为波段3,red为波段2 编 […]

Continue reading
Posted in 未分类 · Leave a comment

python的collections模块中namedtuple结构使用示例

20 6月01 1月 by test31297505

namedtuple 就是命名的 tuple,比较像 c 语言中 struct。一般情况下的 tuple 是 […]

Continue reading
Posted in 未分类 · Leave a comment

【python教程】pythonide

20 6月01 1月 by test31297505

python ide 本文为大家推荐几款款不错的python ide(集成开发环境),比较推荐 pycharm […]

Continue reading
Posted in 未分类 · Leave a comment

python2.7基础教程之:概要介绍

20 6月01 1月 by test31297505

.. _tut-informal: ************************************* […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

先前文章
较新文章

近期文章

  • 15款互联网人必备的AI工具,效率提升2倍
  • 多个ChatGPT通用指令
  • Python采集biaozhun政府文件
  • TensorFlow库:Python中的深度学习
  • python 本地密码管理应用

近期评论

  • helenadmin发表在《Python采集biaozhun政府文件》
  • helenadmin发表在《写给程序员的一封公开信》
  • Google发表在《About Me》
  • helenadmin发表在《ES(ElasticSearch)分布式全文搜索引擎及使用方式》
  • buy viagra发表在《About Me》

文章归档

  • 2024年12月
  • 2024年9月
  • 2024年6月
  • 2024年5月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年7月
  • 2018年6月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2017年8月
  • 2017年7月
  • 2017年6月
  • 2017年5月
  • 2017年4月
  • 2017年3月
  • 2017年1月
  • 2016年12月
  • 2016年11月
  • 2016年10月
  • 2016年9月
  • 2016年8月
  • 2016年7月
  • 2016年6月
  • 2016年5月
  • 2016年4月
  • 2016年3月
  • 2016年2月
  • 2015年8月
  • 2015年7月
  • 2015年6月
  • 2015年5月
  • 2014年7月
  • 2014年6月
  • 2014年5月
  • 1970年1月

分类目录

  • Database
  • focus—-实时热搜
  • IC设计
  • js&jquery
  • PHP
  • Python
  • 新技术研习
  • 服务器相关技术
  • 算法
  • 缓存技术
  • 随笔

功能

  • 注册
  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2025 charlie笔记 ·