Answer Posted / nashiinformaticssolutions
Arithmetic operators**: `+`, `-`, `*`, `/`, `//`, `%`, `
Relational operators**: `==`, `!=`, `<`, `>`, `<=`, `>=`
Logical operators**: `and`, `or`, `not`
Bitwise operators**: `&`, `|`, `^`, `~`, `<<`, `>>`
Identity operators**: `is`, `is not`
Membership operators**: `in`, `not in`
Assignment operators**: `=`, `+=`, `-=`, `*=`, `/=`, etc.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you iterate over a list and pull element indices at the same time?
What does map function in python do?
What is pass in python? What are the differences between pass and continue?
Can I learn python on my own?
What is an abstract class in python?
What is polymorphism in python?
Does python have inheritance?
What is the process to calculate percentiles with numpy?
How can you handle multiple exception in python?
What do you mean by list comprehension in python?
Is python 3gl or 4gl?
Why do we say “a b c = 1000 2000 3000” is an invalid statement in python?
What is the output of print str * 2 if str = 'hello world!'?
Can you write an efficient code to count the number of capital letters in a file?
What is instance method?