为了账号安全,请及时绑定邮箱和手机立即绑定
location 不是 Localtion
网卡了,呜呜呜
上面写的seek的函数用法是错的,。他那参数代表的是偏移量,1就是在一个字符后,2就是两个字符后。。。。。。
而不是什么文件尾部!!!害我搞半天—_—#
a = int(input())
L = ['bob', 'about', 'Zoo', 'Credit']

sorted(L, key = lambda i:i[0].upper())
# Enter a code
class animals:
def Setname(self,name):
self.name = name
print('{}'.format(self.name))

dog = animals()
dog.Setname('dog')
cat = animals()
cat.Setname('cat')
class Animal(object):
def __init__(self, name, age, localtion):
self.__name = name
self.__age = age
self.__localtion = localtion

def a(self):
return self.__name,self.__age ,self.__localtion

dog = Animal('wangwang', 1, 'GuangDong')
print(dog.a())
def calc_prod(list_):
def num_prod():
def product(x, y):
return x * y
return str(reduce(product, list_))
return num_prod
L = calc_prod([1,2,3,4,5])
print(L)
print(L())
1、子类定义的时候,需要在括号内写明继承的类;
2、在__init__()方法,需要调用super(Student, self).__init__(name, gender),来初始化从父类继承过来的属性;
localtion写错了,应该是location
# Enter a code
class Animal(object):
count = 0
def __init__(self,name,age):
self.name = name
self.age = age
Animal.count += 1



dog = Animal('wangwang',1)
print(Animal.count)
cat = Animal('mimi',3)
print(Animal.count)
# Enter a code
class Animal(object):
count = 0
def __init__(self,name,age):
self.name = name
self.age = age
Animal.count += 1



dog = Animal('wangwang',1)
cat = Animal('mimi',3)

print(dog.count)
print(cat.count)
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消