Ask Your Question
1

What does the TypeError message "'>=' not supported between instances of 'dict_values' and 'int'" mean?

asked 2022-01-04 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-10-03 16:00:00 +0000

ladyg gravatar image

This error message means that you are trying to compare a dictionary object (specifically, the values of a dictionary) to an integer using the greater-than-or-equal-to operator (">="), which is not supported. The comparison between these two different data types is not valid or defined, hence causing the TypeError.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-04 11:00:00 +0000

Seen: 9 times

Last updated: Oct 03 '22