python 学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 学习笔记相关的知识,希望对你有一定的参考价值。

类 和 实例

class Student(object):
    def __init__(self,name,score):
        self.name=name
        self.score=score
    def print_sc(self):
        print %s,%s %(self.name,self.score);

ji = Student(jk,90)
ji.print_sc()

 

以上是关于python 学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

Python 3学习笔记

python 机器学习有用的代码片段

python爬虫学习笔记-M3U8流视频数据爬虫

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

python基础学习笔记(十三)

Python学习笔记之正则表达式