-
大小: 1.11KB文件類型: .py金幣: 1下載: 0 次發(fā)布日期: 2021-03-03
- 語(yǔ)言: Python
- 標(biāo)簽: 機(jī)器學(xué)習(xí)??神經(jīng)網(wǎng)絡(luò)??機(jī)器??網(wǎng)絡(luò)??學(xué)習(xí)??
資源簡(jiǎn)介
神經(jīng)網(wǎng)絡(luò)
代碼片段和文件信息
#!/usr/bin/python
#??-*-?coding:utf-8?-*-
class?People:
????def?__init__(self?n?a?s):
????????self.name?=?n
????????self.age?=?a
????????self.__score?=?s
????????self.print_people()
????????#?self.__print_people()???#?私有函數(shù)的作用
????def?print_people(self):
????????str?=?u‘%s的年齡:%d,成績(jī)?yōu)椋?.2f‘?%?(self.name?self.age?self.__score)
????????print?str
????__print_people?=?print_people
class?Student(People):
????def?__init__(self?n?a?w):
????????People.__init__(self?n?a?w)
????????
評(píng)論
共有 條評(píng)論