摘要: 条件、循环和其他语句1.print 使用逗号输出 print 'Age:',42 输出结果:Age: 422.赋值方法: ①序列解包 x,y,z=1,2,3 print x,y,z 结果:1,2,3 ②链式赋值 x=y=somefunction() ③增量赋值 x+=1 等价于:x=x+13.条件和条件语句:1)标准的真值为0(表示假),和1(表示真)2)if语句示例: >>>name=raw_input('what you name? ') >>>if name.endswith('Tom'): print 阅读全文
posted @ 2013-11-05 20:08 沉默的云 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 字典--当索引不好用时1.字典是Python中唯一内建的映射(mapping)类型。 ① 字典中的值没有特殊的顺序,但是都存储在一个特定的键(Key)里。键可以是数字、字符串甚至是元组。 如:dict1={'name':'Tom','age':20} #键和值通过冒号(:)隔开,而项之间用逗号(,)... 阅读全文
posted @ 2013-11-05 16:53 沉默的云 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 一、字符串:1.不可变性。分片赋值对于字符串是不合法的。2.字符串格式化%eg: print 'The price is: %d' % 30 print 'The price is: %.2f' % 30 print 'The price is: $%.2f' % 30结果: 30 30.00 $3... 阅读全文
posted @ 2013-11-05 15:17 沉默的云 阅读(176) 评论(0) 推荐(0) 编辑