Excel Mayhem
Challenge Description
Attachments
Solution
Python Script
# import pandas lib as pd
import pandas as pd
import re
dataframe1 = pd.read_excel('/content/flags.xlsx')
for each in re.findall(r'\b[\w_]+?\b', dataframe1.to_string()):
if not each.startswith("fake_flag") and not each.isdigit():
print(each)Output

Last updated