> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove str() from call to print()

#### Sourcery refactoring id: `remove-str-from-print`

#### Description:

Removes unnecessary calls to `str()` from within `print()`

#### Before:

```python
print(str(1))
```

#### After:

```python
print(1)
```

#### Explanation:

Objects passed into calls to the `print()` function already have `str()` called
on them, so it is not required to do so yourself.
