Python 学习 转载(出处:http://www.cnblogs.com/vamei )加心得 3days

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 学习 转载(出处:http://www.cnblogs.com/vamei )加心得 3days相关的知识,希望对你有一定的参考价值。

def pp(x):
print(‘as‘)
def k():
print (‘k‘)
k()//k()必须在def k()同列 才能调用def k()
print (pp(2)) //当有2时,pp(x)必须要有参数

class Human(object):
   laugh = ‘hahahaha‘
   def show_laugh(self):
        print self.laugh
   def laugh_100th(self):
         for i in range(100):
             self.show_laugh()//也可以调用 show_laugh()











以上是关于Python 学习 转载(出处:http://www.cnblogs.com/vamei )加心得 3days的主要内容,如果未能解决你的问题,请参考以下文章

Python学习(二十一) —— 前端之JavaScript

《转载》为什么我要在2018年学习Python?

(转载-学习)python wsgi 简介

七步精通Python机器学习--转载

Python学习笔记5 转载基本矩阵运算_20170618

转载python 的日志logging模块学习