首页 > 编程语言 > 详细

python学习

时间:2017-05-24 22:09:49      阅读:311      评论:0      收藏:0      [点我收藏+]

Python

  • 定义变量

直接定义

a=1

b=2

a+b

 

 

 

定义函数

 

def hello():

   print "hello world!"

 

def max(a,b):

   if a>b:

      return a

   else:

      return b

 

hello()

print(max(8,6))

 

 

 

循环

 

for i in range(0,100):

print("Item{0},{1}".format(i,"hello,world!"))

此处的{0},{1},作为占位符号,把后面format之后的数据进行输入。

 

 

面向对象--定义类

Example1:

class hello:

   def __init__(self,name):   ***此处的self,name是怎么个意思?

       self._name = name

 

   def sayhello(self):

       print("hello {0}".format(self._name))

 

h = hello("coin")

h.sayhello()

 

example2:

class hello:

   def __init__(self,name):

     self._name = name

 

   def sayhello(self):

       print("hello {0}".format(self._name))

 

class Hi(hello):

#此处使用赋类的方法

   def __init__(self,name):

     hello.__init__(self,name)

 

   def sayHi(self):

       print ("Hi {0}i".format(self._name))

 

 

 

h = hello("coin")

h.sayhello()

 

hi = Hi("zhangsan")

hi.sayHi()


本文出自 “NB小菜鸟” 博客,谢绝转载!

python学习

原文:http://309692348.blog.51cto.com/728319/1929111

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!