1+3=
In Python, you can calculate the sum of 1 and 3 using the following code:
```python
result = 1 + 3
print(result)
```
When you run this code, it will output:
```
4
```
Alternatively, you can use a more concise version:
```python
print(1 + 3)
```
Both of these codes will produce the same result.