Computer Science

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

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

Python String Manipulation

21 Likes

Answer

The following Python operators can be used with strings:

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

Answered By

11 Likes


Related Questions