CBSE Class 11 Computer Science Question 42 of 91

String Manipulation — Question 2

Back to all questions
2
Question

Question 2

Out of the following operators, which ones can be used with strings in Python?

=, -, *, /, //, %, >, <>, in, not in, <=

Answer

The following Python operators can be used with strings:

=, *, >, in, not in, <=

Answer