学生出勤记录 I
class Solution:
def checkRecord(self, s: str) -> bool:
'''
count() 方法用于统计字符串里某个字符出现的次数。可选参数为在字符串搜索的开始与结束位置:
str.count(sub, start= 0,end=len(string))
sub -- 搜索的子字符串
start -- 字符串开始搜索的位置。默认为第一个字符,索引值为0。
end -- 字符串中结束搜索的位置。默认为字符串的最后一个位置。
注意字符串中也可以使用 in 这个命令
'''
return s.count('A') <= 1 and 'LLL' not in s