Python笔记

来源:互联网 发布:cad迷你画图软件 编辑:程序博客网 时间:2024/06/06 12:22

基本变量类型

Python支持四种不同的数字类型:
int(有符号整型)
long(长整型[也可以代表八进制和十六进制])
float(浮点型)
complex(复数)

你还可以使用连续三个单引号 ''' ,或者三个双引号 """ 创建字符串:>>> '''Boom!''''Boom'>>> """Eek!"""'Eek!'三元引号在创建短字符串时没有什么特殊用处。它多用于创建多行字符串。下面的例子中,创建的字符串引用了 Edward Lear 的经典诗歌:>>> poem = '''There was a Young Lady of Norway,... Who casually sat in a doorway;... When the door squeezed her flat,... She exclaimed, "What of that?"... This courageous Young Lady of Norway.'''>>>
原创粉丝点击