03 2016 档案
摘要:# coding:utf-8 """ property:负责把方法变成属性 """ class Student(object): def get_score(self): return self._score def set_score(self, score): if not isinstance(score, int): ...
阅读全文
摘要:python数字: 本文主要讲解常用的数字类型转换, 数字函数和随机数字函数。 1 # coding:utf-8 2 3 # python数字类型转换 4 def data_conversion(): 5 """ 6 int(x [,base ]) 将x转换为一个整数 7 long(x [,base
阅读全文

浙公网安备 33010602011771号