From 46ee773417c9502c3c9c10559476535fe3973a5f Mon Sep 17 00:00:00 2001 From: go-outside-helper <138340846+go-outside-helper@users.noreply.github.com> Date: Thu, 14 Mar 2024 17:07:48 +0100 Subject: [PATCH] Update find_word_inside_text.py --- Other_Hackings/useful_scripts/find_word_inside_text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Other_Hackings/useful_scripts/find_word_inside_text.py b/Other_Hackings/useful_scripts/find_word_inside_text.py index 2323244..4b8392a 100644 --- a/Other_Hackings/useful_scripts/find_word_inside_text.py +++ b/Other_Hackings/useful_scripts/find_word_inside_text.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "bt3gl" +__author__ = "Mia Stein" # given two text, find the difference between them # useful for ciphers, for example vinegere, when @@ -22,4 +22,4 @@ if __name__ == '__main__': index = find_word(A, B) print A[index: index + 15] - print B[index: index + 15] \ No newline at end of file + print B[index: index + 15]