Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

introduction update #460

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Prev Previous commit
update the quotes
  • Loading branch information
serynabatov committed Apr 20, 2024
commit ab3351ae602fd5a96c7eeabcc8da69a781d63533
2 changes: 1 addition & 1 deletion foundations/quickstart.ipynb
Original file line number Diff line number Diff line change
@@ -426,7 +426,7 @@
"source": [
"### Dictionaries (`dict`)\n",
"\n",
"A dictionary is a collection of *labeled objects*. While a list is an *ordered* container, the dictionary is an *unordered* one, meaning that the elements in the container do not presume the order. Dictionary elements are accessed via their "key" rather than their index. Python uses curly braces `{}` to create dictionaries:"
"A dictionary is a collection of *labeled objects*. While a list is an *ordered* container, the dictionary is an *unordered* one, meaning that the elements in the container do not presume the order. Dictionary elements are accessed via their \"key\" rather than their index. Python uses curly braces `{}` to create dictionaries:"
]
},
{