#Hi. I'm trying to finish attached task but I got stuck, some advices?
9 messages · Page 1 of 1 (latest)
Can you post some more details:
- which programming language, which exercise, what you’ve tried, post your code snippet and error as text. Thanks!
Little Sister's Vocabulary, first excercise in python's strings
and 2 task in that excercise
And another question, will my code be saved if I quit and reopen the page?
It should save the last revision that you’ve submitted
And what about the code?
It should have the latest code if the cache hasn't cleared. If you submit an iteration, it is written to the database.
To make code easier for everyone to read (and to make you look like a pro), **please use a codeblock when sharing code.**For example, you can type the following:
```
for number in range(10):
total += number;
```
Discord will render that as so:
for number in range(10):
total += number;
You can even get syntax highlighting by adding the language to the codeblock opening:
```python
for number in range(10):
total += number;
```
Discord will render that as so:
for number in range(10):
total += number;