# Troubleshooting Page

-> we may get different types of errors in the python learning journey. this is the place where we can fine all of those errors in one places

1. value error
2. Type error

<figure><img src="/files/h2CwVyl0DYfXA83zNYd1" alt=""><figcaption></figcaption></figure>

1. **Raw Strings (`r""`)**: Adding `r` before a string treats it as a raw string and prevents Python from interpreting backslashes as escape characters.
2. **Double Backslashes (`\\`)**: Alternatively, you can replace each single backslash (`\`) with double backslashes (`\\`) to avoid the warning.

Using raw strings is the preferred solution for readability and simplicity in cases involving escape sequences like `\.`&#x20;

<figure><img src="/files/JeDm45szAZLxqlqi0FiS" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://charan-techjourney.gitbook.io/charan-techjournal/50-days-of-devops-ecommerce-microservices/100-days-of-python/troubleshooting-page.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
