Is there any function to check is something is a memebr of a list/tuple? In python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is there any function to check is something is a memebr of a list/tuple? In python

I need a function to check if a number is in the list, like the, 'belongs to' function of math, I know how to make such function but I want to know if there is any default function

15th Sep 2017, 8:55 AM
Gaurav Atreya
Gaurav Atreya - avatar
1 Answer
+ 1
arr=[1,2,3] set={1,2,3} dict={1:'a', 2:'b', 3:'c'} tup=(1,2,3) print(3 in arr) print(3 in set) print(3 in dict) print(3 in tup) Prints True for each of these. Could it be any simpler? I dont think so...
15th Sep 2017, 9:49 AM
Testing003