Check If List Contains Item Python Code Example


Example 1: python check if list contains


# To check if a certain element is contained in a list use 'in'
bikes = ['trek', 'redline', 'giant']
'trek' in bikes
# Output:
# True

Example 2: python check if list contains value


if value in list:
#do stuff

#Also to check if it doesn't contain
if value not in list:
#do stuff

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"