I have a simple EXCEL-sheet with names of cities in column A and I want to extract them and put them in a list:
def getCityfromEXCEL(): wb = load_workbook(fi
If you want to ignore it:
import warnings warnings.simplefilter("ignore") wb = load_workbook(path) warnings.simplefilter("default")