#Hi. I'm trying to finish attached task but I got stuck, some advices?

9 messages · Page 1 of 1 (latest)

upbeat rivet
ocean oak
#

Can you post some more details:

  • which programming language, which exercise, what you’ve tried, post your code snippet and error as text. Thanks!
upbeat rivet
#

Little Sister's Vocabulary, first excercise in python's strings

#

and 2 task in that excercise

upbeat rivet
#

And another question, will my code be saved if I quit and reopen the page?

ocean oak
#

It should save the last revision that you’ve submitted

upbeat rivet
#

And what about the code?

twilit pebble
#

It should have the latest code if the cache hasn't cleared. If you submit an iteration, it is written to the database.

errant impBOT
#

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;