Answer Posted / glibwaresoftsolutions
- `/` 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
Which apps use python?
What is design pattern in python?
How python maintains conditional blocks?
Does range start at 0 python?
Explain relational operators in python?
Which databases are supported by python?
Please explain when is the python decorator used?
How much do python programmers make?
What are the use of sets in python?
Why python is popular now?
Narrate the difference between python arrays and lists.
What is os module will do in python?
Is python a programming language?
Can you use r in python?
State and explain about strings?