Convert Language
Translates JavaScript code snippets into equivalent Python code. Ideal for developers migrating projects or learning syntax differences between the two languages.
Development & MarketingDevelopment
Convert this code from JavaScript to Python: "".
Example Output
It looks like you want to convert the JavaScript string "EXAMPLE" to equivalent Python code. This is just a string literal, so in Python, it looks almost the same:
```python
"EXAMPLE"
```
If you meant a variable assignment as in JavaScript (e.g., `let str = "EXAMPLE";`), in Python that would be:
```python
str = "EXAMPLE"
```
If you need something more advanced, let me know!
Live Prompt Preview
Convert this code from JavaScript to Python: "".