Miranda is using Python 3 as a calculator and wants to divide 1374 by 3. What should Miranda type?

1 answer

Miranda should type the following line of code to divide 1374 by 3 in Python 3:

```python
1374 / 3
```