I want to make a program that detects if it has a specific "text" in the input entered by the user.
In this example, the "text": 100
I want it to detect this 100 (regardless of position) in the input. Example: test100 or 100test
I want to develop this program, to delete files. Let's say I have the files: "t100.txt", "a100.txt", "b100.txt". I want it to delete each file that contains "100" in the title.
import os
#Arquivos
a1 = open('t100.txt', 'r+')
a2 = open('a100.txt', 'r+')
a3 = open('b100.txt', 'r+')
string = input('Você deseja excluir todos os arquivos que contém qual string: ')
if string[] == '100':
print("Removendo os arquivos que contém '100' no título")
os.remove()
else:
print("Não há arquivos que contém '100' no título")