Static Typing, DataFrame, Dictionary Comprehension
This code looks back-to-front to me.
birthdays_dict = {
(data_row["month"], data_row["day"]): data_row
for (index, data_row) in data.iterrows()
}
By contrast, this code is much easier to understand. What it loses in brevity, it makes up for in being declarative.
birthdays_dict: dict[tuple[int, int], any] = {}
for index, data_row in data.iterrows():
key: tuple[int, int] = (data_row["month"], data_row["day"])
birthdays_dict[key] = data_row
return birthdays_dict
Published on 23 Apr 2024
all tags
100daysofcode activerecord android annoyances api apt arch array artix atom az3w backend bash blog browser bug callback career ci-cd cli cloud code coding config configuration cp crud cryptography css csv database db design devops django docker email erp feelsgood filter fugitive gif gist git gnome gnome pomodoro grep hebrew http ide isbn-fetcher iso javascript job search js kanban kindle koans learning linkedin linux logger manjaro map markdown microservices mobi mtp neovim nodejs nvchad packages panda pastbin patch portfolio post postgres pytest python rails reduce refactoring reflections rest routes rspec ruby salesforce script scripting security sed shell sql string_replacement study tdd terminal testing tmux ttd version_control vim vim sort walkthrough webdev workflow