python一切皆对象(object),每个对象都可能有多个属性(attribute)。python的属性有一 […]
Continue reading作者:test31297505
python判断闰年
#-*- coding:utf-8 -*- try: year = int(raw_input(‘ […]
Continue readingpython的range()方法
使用python的人都知道range()函数很方便,今天再用到他的时候发现了很多以前看到过但是忘记的细节。这里 […]
Continue readingpython实现二叉树的中序遍历
#!/usr/bin/env python # coding=utf-8 # inorderbl.py imp […]
Continue readingpythonshelve模块
shelve shelve是一额简单的数据存储方案,他只有一个函数就是open(),这个函数接收一个参数就是文 […]
Continue readingpython中文乱码
开始接触python脚本,一上来就碰到了中文乱码问题。 结合网上的资料,现整理下: 字符串在python内部的 […]
Continue readingpython字符串反转
python 字符串反转 1. python 字符转切片实现 python代码 name = tramp pr […]
Continue readingpython类以及继承操作代码示例
直接贴自己写的代码做参考: #encoding=utf-8 __author__ = ‘admin […]
Continue readingpython列表list去重
python 列表list去重 一.{}.fromkeys(list).keys() list2 = {}.f […]
Continue readingpython入门读写文件
1.打开文件,读取所有内容 file_object = open(‘thefile.txtR […]
Continue readingpython的函数定义和调用
forward declaration http://en.wikipedia.org/wiki/forwar […]
Continue readingpython数组
python数组1,常见习题: 测试题: 0.列表都可以存放一些什么东西? 答:整数,浮点数,字符串,对象,存 […]
Continue readingpythonlist排序
实例1: >>>l = [2,3,1,4] >>>l.sort() >>>l >>>[1,2,3,4] 实例2 […]
Continue readingpython实现二叉查找树
# -*- coding: cp936 -*- #————&# […]
Continue readingpython中bisect模块用法实例
本文实例讲述了python中bisect模块用法,分享给大家供大家参考。 具体方法分析如下: 这个模块只有几个 […]
Continue reading