1. Как узнать длину строки s в заданном тексте и вывести это значение в консоль? 2. Как вывести весь текст в нижнем

  • 2
1. Как узнать длину строки "s" в заданном тексте и вывести это значение в консоль?
2. Как вывести весь текст в нижнем регистре?
3. Как заменить все вхождения слова "walle" на "wall-e", если такая ошибка была допущена?
4. Как подсчитать, сколько раз в тексте было использовано слово "earth"?
5. Есть код к заданию 1:
s = "in a distant, but not so unrealistic, future \ where mankind has abandoned earth because it has \ become covered with trash from products.
Звонкий_Спасатель_4282
20
1. Чтобы узнать длину строки "s" в данном тексте и вывести это значение в консоль, нужно использовать функцию len() в Python. Вот код:

python
s = "in a distant, but not so unrealistic, future where mankind has abandoned earth because it has become covered with trash from products"
length = len(s)
print(f"Длина строки s: {length}")


2. Чтобы вывести весь текст в нижнем регистре, нужно использовать функцию lower() в Python. Вот код:

python
s = "in a distant, but not so unrealistic, future where mankind has abandoned earth because it has become covered with trash from products"
lowercase_text = s.lower()
print(lowercase_text)


3. Чтобы заменить все вхождения слова "walle" на "wall-e", если такая ошибка была допущена, нужно использовать функцию replace() в Python. Вот код:

python
s = "in a distant, but not so unrealistic, future where mankind has abandoned earth because it has become covered with trash from products"
corrected_text = s.replace("walle", "wall-e")
print(corrected_text)


4. Чтобы подсчитать, сколько раз в тексте было использовано слово "earth", нужно использовать метод count() в Python. Вот код:

python
s = "in a distant, but not so unrealistic, future where mankind has abandoned earth because it has become covered with trash from products"
count_earth = s.count("earth")
print(f"Слово "earth" использовано {count_earth} раз(а)")


5. Вот код к заданию 1:

python
s = "in a distant, but not so unrealistic, future where mankind has abandoned earth because it has become covered with trash from products"
length = len(s)
print(f"Длина строки s: {length}")