Last active
August 15, 2024 13:57
-
-
Save CodeByAidan/d18f8d6dfdc2d1f8896f2cbf6a4e023e to your computer and use it in GitHub Desktop.
Convert column index to Excel column letter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_excel_column_letter(col_idx: int) -> str: | |
letter = "" | |
while col_idx > 0: | |
col_idx, remainder = divmod(col_idx - 1, 26) | |
letter: str = chr(65 + remainder) + letter | |
return letter | |
# EX: | |
# >>> get_excel_column_letter(49) | |
# 'AW' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment