自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

python 学习笔记

  • 博客(12)
  • 收藏
  • 关注

原创 字典

people = { 'Alice':{ 'phone':'2341', 'addr':'Foo drive 23' }, 'Beth':{ 'phone':'

2011-08-24 22:18:30 277

原创 字符串

#指定输出宽度print '%10f' % pi#制定输出宽度和精度print '%10.2f' % pi#指定输出精度print '%.2f'' %pi#用0补充print '%010.2f' %pi#用空格补充 pr

2011-08-21 21:00:20 241

原创 list

print list('hello')name = ['Alice', 'Beth', 'Cecil', 'Dee']del name [2] print namename[2] = 'CC'print namename2 = list('perl')print

2011-08-21 20:44:37 167

原创 list

print "append"lst = [1, 2,3]lst.append(4)print lstprint "count"print ['to', 'be', 'or', 'not', 'to', 'be'].count('to')print "extend"

2011-08-18 22:51:41 186

原创 sliceing

testString = 'python web site 'print testString[0:1]print testString[9:30]print testString[32:-4]print testString[-3:0]print testString

2011-08-14 21:51:57 209

原创 indexing

months = [ 'january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'septembe

2011-08-11 22:07:18 184

原创 长字符的输出

#分行输出>>> print '''this is very long string.... it continues here.... it's not over yet.... "hello world" '''this is very long stri

2011-08-10 22:50:03 232

原创 字符串表示,str 和 repr

str   :把值转换为合理的字符串repr:创建一个字符串>>> print repr("hello world")'hello world'>>> print repr(10000L)10000L>>> print str("h

2011-08-10 22:11:49 288

原创 input 和 raw_input

input : 把输入的原样输出raw_input: 把输入的转换为字符串输出>>> name = input("your name : ")your name : xxjTraceback (most recent call last):  File

2011-08-10 22:11:29 241

原创 单双引号,转义符

1. 双引号括起来的字符串,打印出来也是单引号>>> "hello world"'hello world'2.使用单引号>>> 'hello world''hello world'3.单双引号混合使用>>> "let's go""l

2011-08-10 21:17:14 346

原创 执行普通除法的方法

from   __future__  import divisonpthon -Qnew xxj.py

2011-08-10 20:33:44 481

原创 floor函数,ceil函数

floor函数:数值向下取整  ceil函数:将数值转换为大于或等于它的最小整数  sqrt:求平方上记函数都在math模块中:>>> import math>>> math.floor(19.6)19.0>>> math.ceil(19.3)

2011-08-10 20:32:23 363

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除