Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 649b506

Browse files
Update README.md
-+ replaced with the plural word -+ Fixed the hint structure
1 parent dafe671 commit 649b506

File tree

1 file changed

+5
-5
lines changed
  • exercises/10.1-And_One_and_a_Two_and_a_Three

1 file changed

+5
-5
lines changed

‎exercises/10.1-And_One_and_a_Two_and_a_Three/README.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Dictionaries (or dict in Python) are a way of storing elements just like you
44
would in a Python list. But, rather than accessing elements using its index,
55
you assign a fixed key to it and access the element using the key. What you now
66
deal with is a "key-value" pair, which is sometimes a more appropriate data structure
7-
for many problem instead of a simple list.
7+
for many problems instead of a simple list.
88

99

1010
# 📝Instruction
@@ -18,10 +18,10 @@ phone : 123-123-2134
1818
email : test@nowhere.com
1919
```
2020

21-
💡Hints
22-
-contact.keys() `['fullname', 'phone', 'email']`
21+
💡Hint:
22+
-contact.keys() `['fullname', 'phone', 'email']`
2323

24-
-contact.values() `['Jane Doe', '321-321-4321', 'test@test.com']`
24+
-contact.values() `['Jane Doe', '321-321-4321', 'test@test.com']`
2525

26-
-contact.items() `[('fullname', 'Jane Doe'), ('phone', '321-321-4321'), `
26+
-contact.items() `[('fullname', 'Jane Doe'), ('phone', '321-321-4321'), `
2727
`('email', 'test@test.com')]`

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /