Day7:写出一个程序,接受一个由字母和数字组成的字符串和一个字符,输出输入字符串中含有该字符的个数,不区分大小写 eg:input : a = '123ASVFBVESS' b = 's' output : 3 方法一:先来一个比较繁琐的版本,时间复杂度为O(n) def countA(): a = input() b = input() s = 0 for i in range(len(a)): if a[i].upper == b.upper: s += 1 return s print…
多态 class Animal: def __init__(self, name): # Constructor of the class self.name = name def talk(self): # Abstract method, defined by convention only raise NotImplementedError("Subclass must implement abstract method") class Cat(Animal): def talk…
类 面向对象最重要的概念就是类(Class)和实例(Instance),比如球类,而实例是根据类创建出来的一个个具体的“对象”,每个对象都拥有相同的方法,但各自的数据可能不同.在Python中,定义类是通过class关键字: class People(object): # 自定义一个People类,括号内的object表示当前类继承object类 '''this is my first object''' # 类的注释 name = 'daxin' # 类的属性 age = 18 def eat…