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 学习笔记的主要内容,如果未能解决你的问题,请参考以下文章
[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段