文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>python 实例一

python 实例一

时间:2010-07-28  来源:zhaohang3031

Hello.py  

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == "__main__":
    print "hello world"


 

Compile.py

import py_compile
py_compile.compile('hello.py')


import compiler
compiler.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.__name

if __name__ == "__main__":
    student = Student("borphi") # 对象名小写
    print student.getName()


>>> borphi

 

 

variable.py

i = 1
print id(i)
i = 2
print 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)


 

 

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载