Python Online Compiler & Playground
HTML/CSS/JavaScript
HTML
CSS
Javascript
C++
C
PHP
Java
Python
Swift
C#
Ruby
Node.JS
Kotlin
jQuery
Go
R
TypeScript
Start Python Course
Register
in_array.py
+1
Author: Venkatesha P
Dark
Public
Save
PY
py
1
2
3
4
5
6
7
# Please check the different outputs and analyze.
arr =
[
True
,
"a"
];
print
(
"a"
in
arr
)
print
(
True
in
arr
)
print
(((
"a"
in
arr
)
in
arr
))
print
(
"a"
in
arr
in
arr
)
print
(
arr
in
arr
)
Enter to Rename, Shift+Enter to Preview
OUTPUT