[ create a new paste ] login | about

Project: python
Link: http://python.codepad.org/he59pVmp    [ raw code | output | fork ]

Python, pasted on May 27:
1
2
3
4
5
6
7
8
a=[1,2,3,4,5,6,7,8,9]
i=4
    
if i in a:
    print("item is avoilable ")
else:
    print("items unavoilable")
 


Output:
1
item is avoilable 


Create a new paste based on this one


Comments: