Skip to content

Commit 9553794

Browse files
committed
mention missing :
1 parent 719fee5 commit 9553794

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

answers.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,15 @@ isn't exactly like mine but it works just fine it's ok, and you can
2424
- The last line should have a comma between the arguments, like
2525
`print('You entered:', something)`.
2626

27-
2. The broken code has mostly the same issues as exercise 1. On the
28-
last line the comma is on the wrong side. `"bla bla,"` is a string
29-
that **contains** a comma, but `"bla bla",` is a string and a
30-
**separate** comma. In this exercise, the last line should be
31-
`print("I don't know what", something, "means.")`
27+
2. The broken code has mostly the same issues as exercise 1. Here are
28+
the problems that excercise 1 doesn't have:
29+
30+
- The elif line is missing a `:` at the end.
31+
- On the last line the comma is on the wrong side. `"bla bla,"` is
32+
a string that **contains** a comma, but `"bla bla",` is a
33+
string and a **separate** comma. In this exercise, the last
34+
line should be
35+
`print("I don't know what", something, "means.")`
3236

3337
3. We can simply ask the word with input and print `word * 1000`.
3438

0 commit comments

Comments
 (0)