Why you shouldn't use dict.keys to search in a Python dict

Опубликовано: 06 Август 2024
на канале: Python and Pandas with Reuven Lerner
2,144
118

I often see people using the dict.keys method when they're searching for a dict key. In this video, I explain why that's a bad idea, and why you should just use "in" directly on the dict, instead.