系统网络运维zhaohang3031.blog.chinaunix.net
zhaohang3031
全部博文(240)
2017年(8)
2014年(4)
2013年(15)
2012年(4)
2011年(14)
2010年(55)
2009年(140)
wb123456
酷小川11
gdmzhqf
heu
Bsolar
浪花小雨
Phyllis6
vipty
grjboy30
分类: Python/Ruby
2010-07-28 16:09:53
#!/usr/bin/python# -*- coding: UTF-8 -*-if __name__ == "__main__": print "hello world"
Compile.py
import py_compile py_compile.compile('hello.py')import compilercompiler.compileFile('hello.py')
rule_naming.py
#!/usr/bin/python# -*- coding: UTF-8 -*-# 变量、模块名的命名规则# Filename: ruleModule.py_rule = "rule information"#面向对象中的命名规则class Student: # 类名大写 __name = "" # 私有实例变量前必须有两个下划线 def __init__(self, name): self.__name = name # self相当于Java中的this def getName(self): # 方法名首字母小写,其后每个单词的首字母大写 return self.__nameif __name__ == "__main__": student = Student("borphi") # 对象名小写 print student.getName()
>>> borphi
variable.py
i = 1print id(i)i = 2print id(i)
local_global_variable.py
# 局部变量local = 1
# 全局变量global _x; _x = 3
number.py
# 整型i = 1; print type(i)# 长整型l = 9999999990; print type(l)# 浮点型f = 1.2; print type(f)# 布尔型b = True; print type(b)# 复数类型c = 7 + 8j; print type(c)
上一篇:Python正则表达式操作指南
下一篇:python 实例二
登录 注册