s1 = "Michael Jackson is the best"
# Define the pattern to search for
pattern = r"Jackson"
# Use the search() function to search for the pattern in the string
result = re.search(pattern, s1)
# Check if a match was found
if result:
print("Match found!")
else:
print("Match not found.")
2 вопроса:
1. зачем search, разве нельзя было тоже с find сделать? Например так:
s1 = "Michael Jackson is the best"
# Define the pattern to search for
pattern = "Jackson"
# Don't the search() function to search for the pattern in the string
result = s1.find(pattern)
# Check if a match was found
if result:
print("Match found!")
else:
print("Match not found.")
2. какая функция у r тут? потому что пока что этот r попадался перед стрингами со слешем, никак вообще не объясняли для чего он еще используется