Відповідь:
Текст програми на мові програмування Python:
import random
symbols = ['a', 'b', 'c', 'd', 'e']
text = input('Введіть рядок: ')
insert_position = random.randint(0, len(text))
random_symbol = random.choice(symbols)
new_text = text[:insert_position] + random_symbol + text[insert_position:]
print(f"Ваш рядок з випадковим символом: {new_text}")
(Результат виведення на фото.)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
Текст програми на мові програмування Python:
import random
symbols = ['a', 'b', 'c', 'd', 'e']
text = input('Введіть рядок: ')
insert_position = random.randint(0, len(text))
random_symbol = random.choice(symbols)
new_text = text[:insert_position] + random_symbol + text[insert_position:]
print(f"Ваш рядок з випадковим символом: {new_text}")
(Результат виведення на фото.)