start main

This commit is contained in:
alex 2022-01-23 14:40:51 -05:00
parent bbc6ccc69e
commit d76f04d981
3 changed files with 13 additions and 1 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
*.xlsx *.xlsx
*#

11
xlsx_dir_map/__main__.py Normal file
View File

@ -0,0 +1,11 @@
from openpyxl import load_workbook
wb = load_workbook(filename = 'names.xlsx')
names = []
for row in wb.active.iter_rows():
name = " ".join(list(map(lambda cell: cell.value, row)))
names.append(name)
print(names)

Binary file not shown.