Computer Science
Which of the following is an incorrect Logical operator in Python?
- not
- in
- or
- and
Python Funda
4 Likes
Answer
in
Reason — in
is a membership operator.
Answered By
2 Likes
Related Questions
Which of the following is valid arithmetic operator in Python :
- //
- ?
- <
- and
For a given declaration in Python as s = "WELCOME", which of the following will be the correct output of print(s[1::2])?
- WEL
- COME
- WLOE
- ECM
Which of the following is not a Tuple in Python?
- (1,2,3)
- ("One","Two","Three")
- (10,)
- ("One")
Fill in the blanks:
The smallest individual unit in a program is known as a _________.