22 lines
266 B
Python
22 lines
266 B
Python
|
||
def main():
|
||
team = input("Введите название команды: ").strip()
|
||
|
||
print(f"{team} - чемпион!")
|
||
|
||
print('-' * len(team))
|
||
|
||
lower = team.lower()
|
||
print(lower)
|
||
|
||
print(len(team))
|
||
|
||
print('п' in lower)
|
||
|
||
print(lower.count('а'))
|
||
|
||
|
||
|
||
main()
|
||
|