"Any" means "at least one". Use this tag for questions that deal with testing elements in a collection to see if at least one of them passes a condition.
The Python standard library defines an any() function that Return True if any element of the iterable is true. If …
python functional-programming callback anyI want to check if my list of objects contain an object with a certain attribute value. class Test: def __…
python list attributes anySo, as the title says, I want a proper code to close my python script. So far, I've used input(…
python python-2.7 key anyWhat is the difference between IN and ANY operators in SQL?
sql operators anyI want to get Addresses from profile dictionary,but I got the error "type any? has no subscript members" var …
arrays swift dictionary any anyobjectGiven a simple Set<T>, what is a good way (fast, few lines of code) to get any …
java set anyI am using Entity Framework and I need to check if a product with name = "xyz" exists ... I think I …
entity-framework ef-code-first exists anyI have a DataFrame and I would like to check if any of the values (v) of a column satisfies …
python pandas anyI have tried both 1) smthng = any(select id from exmplTable) 2) smthng in (select id from exmplTable) and I am getting …
postgresql operation any sql-inI would like to know how to transform a Protobuf Any Type to the original Protobuf message type and vice …
protocol-buffers pack unpack any