Answers for "get a value of a key dictionary if value is list"

5

python get dictionary keys as list

# To get all the keys of a dictionary as a list, see below
newdict = {1:0, 2:0, 3:0}
list(newdict)
# Output:
# [1, 2, 3]
Posted by: Guest on February-21-2020
1

check if dict key contains specific key and value

if (key, value) in d.items():
	print("yes")
Posted by: Guest on November-16-2020

Code answers related to "get a value of a key dictionary if value is list"

Python Answers by Framework

Browse Popular Code Answers by Language