Answer Posted / nashiinformaticssolutions
- `/` is the true division operator that always returns a float result, even if both operands are integers.
```python
result = 7 / 3 # Returns 2.3333...
```
- `//` is the floor division operator, which returns the largest integer less than or equal to the result.
```python
result = 7 // 3 # Returns 2
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is set nesting implemented in python?
How do you use super in python?
What does means by split do in python?
How to use of return keywords in python?
How is python used in the real world?
Is nodejs faster than python?
Tell me is there a switch or case statement in python?
How do you alphabetize a list in python?
Difference between __str__ and __repr__ in python?
How do I define a variable?
Are tuples mutable?
What is repl in python?
Explain about classes in strings?
Explain me what is the common way for the flask script to work?
Explain how to delete a file in Python?