AS
Size: a a a
AS
МС
AS
МС
ВЛ
for i in range(len(city)):
if 'st' in city[i] or 'mo' in city[i]:
print(city[i])
s
for i in range(len(city)):
if 'st' in city[i] or 'mo' in city[i]:
print(city[i])
ВЛ
s
ВЛ
city = ['t', 'bb', 'cd', 'sdf', 'adf', 'aa']
for i in range(len(city)):
if city[i] in ('a', 'b'):
print(city[i])