2015年4月4日

布尔值(Boolean values)

摘要: 布尔值是特殊的整数。 尽管布尔值由常量 True 和 False 来表示, 如果将布尔值放到一 个数值上下文环境中(比方将 True 与一个数字相加), True 会被当成整数值 1, 而 False 则会被当成整数值 0。下列对象的布尔值是 False:NoneFalse (布尔类型)所有的值为零... 阅读全文

posted @ 2015-04-04 13:30 长长的天 阅读(1388) 评论(0) 推荐(0)

第一次碰到try-except(core python programming 2nd Edition 3.6)

摘要: 1 # coding: utf-8 # 使用Windows系统,首行'#!/usr/bin/env Pyton'无用,全部改为'# coding: utf-8' 2 3 'readtextfile.py -- read and display text file' 4 5 # get file... 阅读全文

posted @ 2015-04-04 10:54 长长的天 阅读(182) 评论(0) 推荐(0)

导航