```python z = r"" z = rf"" z = R"" z = RF"" ``` becomes: ```python z = r "" z = rf "" z = R "" z = RF "" ``` Note the space separating the string prefix and the string literal.